export declare const SKIP_ENV_VAR = "NX_GITHUB_PAGES_SKIP_BASE_URL_CHECK"; export interface RootLinkOffense { file: string; attribute: string; url: string; } export declare function normalizeBasePath(basePath: string): string; export declare function findRootLinksOutsideBase(directory: string, basePath: string | string[]): RootLinkOffense[]; export declare function assertNoRootLinksOutsideBase(directory: string, basePath: string | string[]): void;