import { TFORMAT } from "../types/formats"; export interface IFormatValidator { name: string; format: TFORMAT | TFORMAT[] | string; expression?: string; text: any; } /** * */ export declare class FormatValidator { name: string; format: TFORMAT | TFORMAT[] | string; expression?: string; text: any; constructor(options: IFormatValidator); /** * * @param options */ private set; /** * isMatch */ isMatch(options?: IFormatValidator | null): boolean; /** * */ private exec; /** * */ private getFormatExpression; } //# sourceMappingURL=FormatValidator.d.ts.map