import { UniNativePage } from "./UniNativePage"; /** * @package io.dcloud.uniapp.runtime * @internal */ export interface UniPageManager { createPage( pageUrl: string, pageId: string, pageStyle: Map, pageOptions?: Map | null ): UniNativePage createDialogPage( pageUrl: string, pageId: string, pageStyle: Map, parentPage?: UniNativePage | null, dialogOptions?: Map | null, pageOptions?: Map | null ): UniNativePage findPageById(pageId: string): UniNativePage | null } export type IPageManager = UniPageManager