import { Validator } from './types'; export { Validator } from './types'; export declare const stdnum: Record>; export declare const personValidators: Record; export declare const entityValidators: Record; export declare const euVat: Record; export declare function validatePerson(country: string, value: string): { checked: boolean; isValid?: boolean; matchedValidators?: Validator[]; }; export declare function validateEntity(country: string, value: string): { checked: boolean; isValid?: boolean; matchedValidators?: Validator[]; };