import { ValidatorOptions } from "../utils";
import { RegexType } from "../utils/regex";
import { LocalType } from "../messages";
type LibConfig = {
    validatorOptions?: ValidatorOptions;
    regex?: Partial<RegexType>;
    local?: LocalType;
};
export declare const configure: (config: LibConfig) => void;
export {};
