///
import type { IfEquals } from "hry-types/src/Any/IfEquals";
import type { IfExtends } from "hry-types/src/Any/IfExtends";
import type { NoInfer } from "hry-types/src/Generic/NoInfer";
import type { WMNavigateToOption } from "../types/OfficialTypeAlias";
import type { RequiredKeys } from "../types/RequiredKeys";
import type { PageDoc } from "./DefineComponent/ReturnType/PageDoc";
type NavigateToOption = {
url: T["path"];
} & IfExtends>, never, {
data?: T["properties"];
}, {
data: T["properties"];
}>> & Omit;
export declare function navigateTo(option: NoInfer>): Promise;
export {};