import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; interface EditorLayoutProps { editor: ReactNode; settings?: ReactNode; showSettings?: boolean; } declare function EditorLayout({ editor, settings, showSettings, }: EditorLayoutProps): react_jsx_runtime.JSX.Element; export { EditorLayout };