import { z } from "zod";
export declare const applicationCreatedV2AlphaPayloadZ: z.ZodObject<{
    gcaAddress: z.ZodString;
    lat: z.ZodNumber;
    lng: z.ZodNumber;
    estimatedCostOfPowerPerKWh: z.ZodNumber;
    estimatedKWhGeneratedPerYear: z.ZodNumber;
    estimatedProtocolFeeUSDPrice_6Decimals: z.ZodString;
}, "strip", z.ZodTypeAny, {
    gcaAddress: string;
    lat: number;
    lng: number;
    estimatedCostOfPowerPerKWh: number;
    estimatedKWhGeneratedPerYear: number;
    estimatedProtocolFeeUSDPrice_6Decimals: string;
}, {
    gcaAddress: string;
    lat: number;
    lng: number;
    estimatedCostOfPowerPerKWh: number;
    estimatedKWhGeneratedPerYear: number;
    estimatedProtocolFeeUSDPrice_6Decimals: string;
}>;
export interface ApplicationCreatedV2AlphaPayload extends z.infer<typeof applicationCreatedV2AlphaPayloadZ> {
}
