/// import type { ComponentInstance } from '../interfaces/ComponentInstance'; import type { FormField } from '../interfaces/types'; declare const useEditor: () => { isPreview: boolean; setIsPreview: import("react").Dispatch>; pageData: ComponentInstance[]; fields: FormField[]; pageId: string; pageTitle: string | undefined; updatePageTitle: (title: string) => void; busiObjectId: string | undefined; columns: number; }; export default useEditor;