///
import type { CommonStudioLayoutConfigProps, StudioLayoutChildrenConfigProps, WithEditorProps } from './types';
import type { StudioLayoutWithEditorConfig } from './types/StudioWithEditorSchema';
export interface StudioLayoutWithEditorConfigProps extends CommonStudioLayoutConfigProps {
children?: (props: WithEditorProps) => StudioLayoutChildrenConfigProps;
}
export interface StudioWithEditorProps {
children?: React.ReactNode | ((props: WithEditorProps) => React.ReactNode);
}
export declare const StudioWithEditor: import("react").FunctionComponent;
export default StudioWithEditor;