type CustomRule<T> = {
    validate: (value: T) => boolean;
    message: string;
};
export declare function DvCustom<T = any>(rules: CustomRule<T> | CustomRule<T>[]): (target: any, propertyKey: string) => void;
export {};
