import { ScanConfig, UserConfig } from './types'; export declare const DEFAULT_SOURCE_EXTENSIONS: string[]; export declare const DEFAULT_IGNORE_GLOBS: string[]; export declare const DEFAULT_TRANSLATION_PATH = "locales"; export declare const DEFAULT_OUTPUT_PATH = "i18n-report.json"; export interface LoadConfigOptions { rootDir?: string; configPath?: string; prompt?: boolean; overrides?: Partial> & { translationPaths?: string[]; outputPath?: string; }; } export declare function findConfigPath(rootDir: string): Promise; export declare function loadConfig(options?: LoadConfigOptions): Promise; export declare function defineConfig(config: UserConfig): UserConfig;