export declare const DefaultLocale = "en-US.json"; export declare const CheckMeasureSuffix = "._measure"; export declare const CheckMetricSuffix = "._metric"; export type ToolkitOptions = { cwd?: string; paths?: string[]; config?: string; structure?: boolean; intl?: boolean; html?: boolean; insightToReport?: boolean; usage?: boolean; comments?: boolean; debug?: boolean; }; export declare const DefaultConfigFileNames: string[]; export type ToolkitConfigFile = Omit & { source?: string; rules?: ToolkitTranslationRule[]; }; export type ToolkitTranslationRule = { dir?: RegExp | RegExp[]; pattern: RegExp | RegExp[]; filterTranslationFile?: boolean; ignore?: boolean; }; export declare const Uncontrolled = "uncontrolled"; export type UsageResult = { files: string[]; identifier: string; ignore: boolean; stats: { extracted: number; loaded: number; ignored: number; missing: number; unused: number; }; data: { missingMessages: string[]; unusedMessages: string[]; ignoredMessages: string[]; }; }; //# sourceMappingURL=data.d.ts.map