import { LocalePreset, ConverterOptions } from './types.cjs';

/**
 * Build Converter function with locale data
 */
declare const buildConverterFactory: (localePreset: LocalePreset) => (options: ConverterOptions) => (s: string) => string;

export { buildConverterFactory };
