export default class ValidationResult {
    get valid(): boolean;
    errors: string[];
    constructor(errors?: string[]);
}
