/// <reference types="react" />
import type { EditorProps } from '@grapesjs/react';
import type { CreateEditorOptions } from './types';
export interface AppProps extends React.HTMLProps<HTMLDivElement> {
    options?: CreateEditorOptions;
    onEditor?: EditorProps['onEditor'];
    onReady?: EditorProps['onReady'];
    onUpdate?: EditorProps['onUpdate'];
}
export declare const DEFAULT_STUDIO_OPTIONS: CreateEditorOptions;
declare const App: import("react").ForwardRefExoticComponent<Omit<AppProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
export default App;
