/**
 * Temporary URLPattern shim
 * @see https://github.com/denoland/dnt/issues/336
 */
declare class URLPatternShim {
    private readonly pattern;
    constructor(pattern: string | RegExp);
    test(url: string): boolean;
}
export interface Settings {
    pattern: URLPatternShim;
    tagLink: (url: string, tag: string, previous?: string, head?: string) => string;
    head: string;
}
export default function getSettingsForURL(url: string): Settings | undefined;
export declare const settings: Settings[];
export {};
//# sourceMappingURL=settings.d.ts.map