declare const enUs: { required: (string | { attribute: undefined; })[]; json: { invalid: (string | { attribute: undefined; })[]; }; array: { invalid: (string | { attribute: undefined; })[]; tooShort: (string | { attribute: undefined; minItemLength: undefined; })[]; tooLong: (string | { attribute: undefined; maxItemLength: undefined; })[]; betweenLength: (string | { attribute: undefined; minItemLength: undefined; maxItemLength: undefined; })[]; }; string: { invalid: (string | { attribute: undefined; })[]; tooShort: (string | { attribute: undefined; minLength: undefined; })[]; tooLong: (string | { attribute: undefined; maxLength: undefined; })[]; betweenLength: (string | { attribute: undefined; minLength: undefined; maxLength: undefined; })[]; }; range: { invalid: (string | { attribute: undefined; ranges: (values: Array) => string; })[]; }; number: { invalid: (string | { attribute: undefined; })[]; integer: (string | { attribute: undefined; })[]; tooSmall: (string | { attribute: undefined; min: undefined; })[]; tooLarge: (string | { attribute: undefined; max: undefined; })[]; between: (string | { attribute: undefined; min: undefined; max: undefined; })[]; }; url: { invalid: (string | { attribute: undefined; })[]; }; boolean: { invalid: (string | { attribute: undefined; })[]; }; file: { invalid: (string | { attribute: undefined; })[]; tooLarge: (string | { attribute: undefined; maxSize: undefined; })[]; mimeType: (string | { attribute: undefined; })[]; }; }; export default enUs;