import { PropertySource, PropertyTarget, PropertyType } from '../../shared/types'; import { FailedConstraint } from './failed-constraint'; export declare class ConfigPropertyValidationError { readonly property: PropertyTarget; readonly type: PropertyType; readonly source?: PropertySource; readonly currentValue: any; readonly failedConstraints: FailedConstraint[]; constructor(data: ConfigPropertyValidationError); }