import { z } from "zod";
export declare const auditPushedV1PayloadZ: 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 AuditPushedV1Payload = z.infer<typeof auditPushedV1PayloadZ>;
