/** * An object containing `ValidityStateFlags` and a corresponding validation message. * * @public */ export interface IControlValidityResult { /** * Validity flags. */ validity: ValidityStateFlags; /** * The validation message for the associated flags. * It may not be an empty string if any of the validity flags are `true`. */ validationMessage: string; } //# sourceMappingURL=IControlValidityResult.d.ts.map