export declare function useRequiredValidationRule(label?: string, isRequired?: boolean): {
    value: boolean;
    message: string;
} | undefined;
