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