/// import type { EditorProps } from '@grapesjs/react'; import type { CreateEditorOptions } from './types'; export interface AppProps extends React.HTMLProps, Pick { /** * Studio editor options. */ options?: CreateEditorOptions; /** * Render a React-authored editor layout instead of the SDK layout config. * When enabled, the provided `children` must include ``. */ withComponents?: boolean; } export declare const DEFAULT_STUDIO_OPTIONS: CreateEditorOptions; declare const App: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default App;