/**
 * Dictionary group
 */
type DictGroup = Record<string, string>[];
/**
 * Locale preset data
 */
interface LocalePreset {
    from: Record<string, DictGroup>;
    to: Record<string, DictGroup>;
}
/**
 * Converter options
 */
interface ConverterOptions {
    from: string;
    to: string;
}

export type { ConverterOptions, DictGroup, LocalePreset };
