/// <reference types="react" />
import { EditorTopbarProps } from '../Editor/EditorTopbar';
import type { StudioLayoutSidebarTopConfig } from './types/StudioSidebarTopSchema';
import { CommonStudioLayoutConfigProps, CommonStudioLayoutProps, StudioBaseReactProps, StudioLayoutWithChildrenConfigProps } from './types';
export interface StudioLayoutSidebarTopConfigProps extends StudioLayoutWithChildrenConfigProps, CommonStudioLayoutConfigProps<StudioSidebarTopProps, StudioLayoutSidebarTopConfig> {
}
export interface StudioSidebarTopProps extends Omit<CommonStudioLayoutProps<StudioLayoutSidebarTopConfig>, 'height' | 'leftContainer' | 'rightContainer' | 'devices' | 'htmlAttrs'>, EditorTopbarProps, Pick<StudioBaseReactProps, 'style' | 'children'> {
}
export declare const StudioSidebarTop: import("react").NamedExoticComponent<StudioSidebarTopProps>;
export default StudioSidebarTop;
