import { IConfig } from '@cloudbase/weda-cloud-sdk'; import { IAppAPI, IMpAuth } from '../../types'; export declare const PAGE_ROOT_SYMBOL: unique symbol; export declare function createPage({ app, id, widgetProps, lifecycle, state, computed, evtListeners, dataBinds, handlers, query: datasetQuery, eventFlows, pageContext, pageAttributes, resetShare, datasetProfile, checkAuth, getExpiredMessage, style, }: { app: IAppAPI; id: string; widgetProps: any; lifecycle: any; state: any; computed: any; evtListeners: Record; handlers: Record; dataBinds?: Record>; query?: Record; eventFlows?: any[]; pageContext?: { uuid?: string; id?: string; }; pageAttributes?: Record; resetShare?: boolean; datasetProfile?: IConfig['datasetProfiles']; checkAuth: (app: IAppAPI, appId: string, $page: any) => Promise; getExpiredMessage: () => Promise; style: any; }): string; export declare function createSimplePageAPIFromLaunchOptions(): Promise<{ id: string; uuid: string; params: Record; }>;