/// import { AxiosInstance } from 'axios'; import { ConfigType } from './stores/pageBuilder'; interface PageBuilderProps { config: ConfigType; agent: AxiosInstance; onNavigate: (route: string | number) => void; } export declare function PageBuilderPage({ config, agent, onNavigate, }: PageBuilderProps): JSX.Element; export {};