import { z } from "zod";
export declare const fractionSoldV2AlphaPayloadZ: z.ZodObject<{
    fractionId: z.ZodString;
    transactionHash: z.ZodString;
    blockNumber: z.ZodString;
    logIndex: z.ZodNumber;
    creator: z.ZodString;
    buyer: z.ZodString;
    step: z.ZodString;
    amount: z.ZodString;
    timestamp: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    timestamp: number;
    fractionId: string;
    transactionHash: string;
    blockNumber: string;
    logIndex: number;
    step: string;
    creator: string;
    buyer: string;
    amount: string;
}, {
    timestamp: number;
    fractionId: string;
    transactionHash: string;
    blockNumber: string;
    logIndex: number;
    step: string;
    creator: string;
    buyer: string;
    amount: string;
}>;
export type FractionSoldV2AlphaPayload = z.infer<typeof fractionSoldV2AlphaPayloadZ>;
