interface RawLog { msg_index: number; events: Events[]; } interface Events { type: string; attributes: Attributes[]; } interface Attributes { key: string; value: string; } export declare const getTransactionTypes: (rawLog: RawLog[]) => string[]; export {};