import { ValidationError } from '../../../domain'; declare class AssertValidation { private readonly result; constructor(result: ValidationError | null); toBeInvalid: () => void; toBeValid: () => void; toBe: (valid: boolean) => void; get erratum(): AssertErratumValidation; } declare class AssertErratumValidation { private readonly result; constructor(result: ValidationError | null); private get erratum(); toHaveErrorOnProperty: (path: string) => void; } export declare const assertValidation: (result: ValidationError | null) => AssertValidation; export {};