export declare class Validation {
    'type': Validation.TypeEnum;
    'regex'?: string | null;
    'regexMessage'?: string | null;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace Validation {
    enum TypeEnum {
        NumberOnly,
        Email,
        Currency,
        Regex,
        None
    }
}
