type CheckBrokenLinksOptions = { logErrors?: boolean; timeout?: number; whitelist?: string[]; retryFailed?: boolean; }; export declare const extractLinks: (content: string) => string[]; export declare const checkUrl: (url: string, options?: CheckBrokenLinksOptions) => Promise; export declare function checkBrokenLinks(mdxDirPath: string, options?: CheckBrokenLinksOptions): Promise; export {};