import { ZodSchema } from 'zod';
/**
 * Validates given `object` with given `schema`.
 */
export declare const validate: <T>(schema: ZodSchema<T>, object: any, index?: number, errorConstructor?: ErrorConstructor) => T;
