import { z } from "zod";
export declare const gctlMintedV2AlphaPayloadZ: z.ZodObject<{
    gctlAmount_6Decimals: z.ZodString;
    timestamp: z.ZodString;
    minter: z.ZodString;
    txHash: z.ZodString;
}, "strip", z.ZodTypeAny, {
    txHash: string;
    gctlAmount_6Decimals: string;
    timestamp: string;
    minter: string;
}, {
    txHash: string;
    gctlAmount_6Decimals: string;
    timestamp: string;
    minter: string;
}>;
export type GctlMintedV2AlphaPayload = z.infer<typeof gctlMintedV2AlphaPayloadZ>;
