import { ValidationSchemas } from '../../../../domain'; import { ManyTestsOptions, TestFnModel } from './types'; export declare class ManyTestsHelper { private readonly options; constructor(options: ManyTestsOptions); valid: (valid: boolean) => string; getTestFnModel: (schema: ValidationSchemas, valid: boolean, value: unknown, index: number) => TestFnModel; getTestId: (value: any, index: number) => string | number; isPrimitiveValue: (value: unknown) => value is string | number; }