/**
 *
 * @param files
 */
export default function recognizer(files: Record<string, unknown> | Record<string, () => Promise<unknown>>): {
    isLocale: (locale: string) => boolean;
    getLocales: () => string[];
    isJsonLocale: (locale: string) => boolean;
    getJsonLocales: () => string[];
    isPhpLocale: (locale: string) => boolean;
    getPhpLocales: () => string[];
    getJsonFiles: (locale: string) => string[];
    getPhpFiles: (locale: string) => string[];
};
