import { TxInfo, Event } from "@daodiseomoney/daodiseo.js"; import { ReturningLogFinderResult } from "@terra-money/log-finder"; import { LogFinderActionResult, LogFinderAmountResult, Amount, Action } from "./types"; export declare const getTxCanonicalMsgs: (txInfo: TxInfo, logMatcher: (events: Event[]) => ReturningLogFinderResult[][]) => LogFinderActionResult[][]; export declare const getTxAmounts: (data: string, logMatcher: (events: Event[]) => ReturningLogFinderResult[][], address: string) => LogFinderAmountResult[][] | undefined;