import type { ComputedRef, Ref } from 'vue'; export interface PageContextProps { contentHeight: ComputedRef; pageHeight: Ref; setPageHeight: (height: number) => Promise; } export declare function createPageContext(context: PageContextProps): { state: any; }; export declare function usePageContext(): PageContextProps;