import { ValidationSchemas, ValidationError } from '../../../domain'; export * from '../helpers'; export declare const expectResult: (actual: ValidationError | null) => { toBeInvalid: () => void; toBeValid: () => void; toBe: (valid: boolean) => void; }; export declare const falsyValues: [undefined, null]; export declare const testEachAdapter: (cb: (type: ValidationSchemas.Type) => void, testMethod?: "describe" | "test" | undefined) => void; export declare const getMakeSut: (type: T) => (rules?: ValidationSchemas.Rules | undefined) => { sut: { validate: (input: unknown) => ValidationError | null; }; }; export declare const capitalize: (str: string) => string; export declare const desc: (parent: string) => string;