import { z } from "zod";
export declare const auditPushedV2AlphaPayloadZ: z.ZodObject<{
    applicationId: z.ZodString;
    expectedProduction_12Decimals: z.ZodString;
    protocolFeeUSDPrice_6Decimals: z.ZodString;
}, "strip", z.ZodTypeAny, {
    protocolFeeUSDPrice_6Decimals: string;
    expectedProduction_12Decimals: string;
    applicationId: string;
}, {
    protocolFeeUSDPrice_6Decimals: string;
    expectedProduction_12Decimals: string;
    applicationId: string;
}>;
export type AuditPushedV2AlphaPayload = z.infer<typeof auditPushedV2AlphaPayloadZ>;
