import { Rule } from "./rule"; /** * Required with rule * The field under validation must be present and not empty only if any of the other specified fields are present and not empty. * * @Example { * name: ['requiredIf:email,phone'] * } */ export declare class RequiredWithRule extends Rule { /** * Rule name */ static ruleName: string; /** * {@inheritdoc} */ requiresValue: boolean; /** * Validate the rule */ validate(): Promise; /** * Get error message */ error(): any; } //# sourceMappingURL=required-with.d.ts.map