import { type PageInstance } from "./page"; import { type ComponentInstance } from "./component"; import { type AppInstance } from "./app"; export declare function deepToRaw(x: unknown): unknown; export declare function deepWatch(this: Pick>, "setData">, key: string, value: unknown): void; export type PropType = () => T; export declare let _instance: PageInstance | ComponentInstance | AppInstance | null; export declare const useInstance: () => PageInstance | ComponentInstance | AppInstance | null; export declare const setInstance: (newInstance: PageInstance | ComponentInstance | AppInstance | null) => void;