import { BridgeContext } from "../runtime/global"; import { Panel } from "../ui/panel"; import { ClassType } from "../util/types"; export declare function internalScheme(context: BridgeContext, panelClass: ClassType): string; export declare function navigator(context: BridgeContext): { push: (source: string | ClassType, config?: { alias?: string | undefined; animated?: boolean | undefined; extra?: object | undefined; singlePage?: boolean | undefined; } | undefined) => Promise; pop: (animated?: boolean) => Promise; openUrl: (url: string) => Promise; };