import { TendermintEvent, TendermintAttribute } from '../events/types'; /** * Parses Tendermint event attributes into a Map * Handles base64 decoding automatically */ export declare function parseEventAttributes(event: TendermintEvent | { attributes: TendermintAttribute[]; }): Map; /** * Gets a specific attribute value from an event * Returns null if not found or cannot decode */ export declare function getEventAttribute(event: TendermintEvent | { attributes: TendermintAttribute[]; }, attributeKey: string): string | null; /** * Gets multiple attributes from an event */ export declare function getEventAttributes(event: TendermintEvent | { attributes: TendermintAttribute[]; }, attributeKeys: string[]): Record; //# sourceMappingURL=event-parsing.d.ts.map