import { alpha } from "./decorators/alpha.js"; import { alphanum } from "./decorators/alphanum.js"; import { ascii } from "./decorators/ascii.js"; import { base64 } from "./decorators/base64.js"; import { between } from "./decorators/between.js"; import { ceil } from "./decorators/ceil.js"; import { creditcard } from "./decorators/creditcard.js"; import { dateformat } from "./decorators/dateformat.js"; import { email } from "./decorators/email.js"; import { emptyToNull } from "./decorators/empty_to_null.js"; import { floor } from "./decorators/floor.js"; import { hexcolor } from "./decorators/hexcolor.js"; import { ip } from "./decorators/ip.js"; import { json } from "./decorators/json.js"; import { lengthBetween } from "./decorators/length_between.js"; import { lengthMax } from "./decorators/length_max.js"; import { lengthMin } from "./decorators/length_min.js"; import { length } from "./decorators/length.js"; import { lowercase } from "./decorators/lowercase.js"; import { macaddress } from "./decorators/macaddress.js"; import { min } from "./decorators/min.js"; import { max } from "./decorators/max.js"; import { port } from "./decorators/port.js"; import { re } from "./decorators/re.js"; import { round } from "./decorators/round.js"; import { stringify } from "./decorators/stringify.js"; import { toLower } from "./decorators/to_lower.js"; import { toUpper } from "./decorators/to_upper.js"; import { trim } from "./decorators/trim.js"; import { uppercase } from "./decorators/uppercase.js"; import { url } from "./decorators/url.js"; import { uuid } from "./decorators/uuid.js"; export declare const d: { alpha: typeof alpha; alphanum: typeof alphanum; ascii: typeof ascii; base64: typeof base64; between: typeof between; ceil: typeof ceil; creditcard: typeof creditcard; dateformat: typeof dateformat; email: typeof email; emptyToNull: typeof emptyToNull; floor: typeof floor; hexcolor: typeof hexcolor; ip: typeof ip; json: typeof json; lengthBetween: typeof lengthBetween; lengthMax: typeof lengthMax; lengthMin: typeof lengthMin; length: typeof length; lowercase: typeof lowercase; macaddress: typeof macaddress; min: typeof min; max: typeof max; port: typeof port; re: typeof re; round: typeof round; stringify: typeof stringify; toLower: typeof toLower; toUpper: typeof toUpper; trim: typeof trim; uppercase: typeof uppercase; url: typeof url; uuid: typeof uuid; }; export type PredefinedDecorators = typeof d;