import { type ZodObject, type ZodRawShape, type TypeOf } from 'zod';
type ValidateZodArgs<T extends ZodRawShape> = {
    payload: TypeOf<ZodObject<T>>;
    schema: ZodObject<T>;
};
export declare const validateZod: <T extends ZodRawShape>({ payload, schema, }: ValidateZodArgs<T>) => boolean | import("./transformData").FormattedError[];
export {};
