export declare const DYNAMIC_PAGE: RegExp;
export interface Page {
    page: string;
    pagePath: string;
    context?: any;
    test: RegExp;
}
export declare function resolvePagePath(pagePath: string, keys: string[]): Page;
export declare function getPage(pagePath: string, context: string[]): Promise<Page>;
