import { z } from "zod";
export declare const auditPushedV2PayloadZ: z.ZodObject<{
    farmId: z.ZodString;
    protocolFeeUSDPrice_12Decimals: z.ZodString;
    expectedProduction_12Decimals: z.ZodString;
    txHash: z.ZodString;
}, "strip", z.ZodTypeAny, {
    farmId: string;
    protocolFeeUSDPrice_12Decimals: string;
    expectedProduction_12Decimals: string;
    txHash: string;
}, {
    farmId: string;
    protocolFeeUSDPrice_12Decimals: string;
    expectedProduction_12Decimals: string;
    txHash: string;
}>;
export type AuditPushedV2Payload = z.infer<typeof auditPushedV2PayloadZ>;
