/**
 * A set of fields that must all be present to satisfy this constraint.
 */
export interface RequiredConstraint {
    required: string[];
}
