import { ValidatorState } from "./validator-state";
export declare class PropertyValidationResult {
    name: string;
    value: any;
    exists: boolean;
    typecheck: boolean;
    type: string;
    min: boolean;
    minVal: string;
    max: boolean;
    maxVal: string;
    validators: ValidatorState[];
}
//# sourceMappingURL=property-validation-result.d.ts.map