import type { Scrubber } from "./Scrubbers";
declare class DateFormat {
    regex: RegExp;
    examples: string[];
    constructor(regex: RegExp, examples: string[]);
}
export declare class DateScrubber {
    static getSupportedFormats(): DateFormat[];
    static getScrubberFor(example: string): Scrubber;
    static create(regex: RegExp): Scrubber;
}
export {};
