export type DvIdTypes = "uuid" | "mongo" | "number";
export interface DvIdOptions {
    type?: DvIdTypes;
    optional?: boolean;
    null?: boolean;
    empty?: boolean;
    regex?: string | RegExp | {
        value: string | RegExp;
        message?: string;
    };
}
export declare const ID_PATTERNS: Record<DvIdTypes, RegExp>;
