export declare function fixedPagePath(pagePath: string): string; export declare function joinWithSlash(start: string, end: string): string; export declare function getFilePath(publicDir: string, pagePath: string): string; export declare const fixRelativeUrls: (href: string) => string; export declare const linkUrlPageData: (linkUrl: string) => string; export declare const linkUrlCustom: (linkUrl: string) => string; export type FormattedFetchResponse = (data: Response) => FormattedResponse; export declare const formatResponseFromPageData: FormattedFetchResponse<{ result: { pageContext: unknown; }; }>; export declare const fetchPageData: (href: string) => Promise<{ [name: string]: unknown; }>;