import { IValidator } from '../validator';
import { DeepPartial } from '../../types/helpers/DeepPartial';
declare class ValidateDictionaryLangMatch<T extends Record<string, unknown>> implements IValidator<T> {
    validate(val: unknown, fallback: T, configName: string): DeepPartial<T>;
}
export default ValidateDictionaryLangMatch;
