import type { FlowTransaction } from "../types"; type EventNames = "Withdraw" | "Deposit" | "Mint" | "Destroy" | "ListingAvailable" | "ListingCompleted" | "CollectibleDestroyed" | "MomentDestroyed" | "Burn" | "BidAvailable"; export declare function parseEvents(events: FlowTransaction["events"], eventName: EventNames, field: string): T; export {};