import { Address, Cell, Transaction } from '@ton/core'; export type EventAccountCreated = { type: 'account_created'; account: Address; }; export type EventAccountDestroyed = { type: 'account_destroyed'; account: Address; }; export type EventMessageSent = { type: 'message_sent'; from: Address; to: Address; value: bigint; body: Cell; bounced: boolean; }; export type Event = EventAccountCreated | EventAccountDestroyed | EventMessageSent; export declare function extractEvents(tx: Transaction): Event[];