import { Chain } from "../types/chain.js"; import { UTXOSchema } from "../transports/types.js"; import { Account } from "../types/account.js"; import { Transport } from "../types/transport.js"; import { Client } from "../types/client.js"; //#region src/actions/getTransactionFee.d.ts type GetTransactionFeeParameters = { txId: string; }; type GetTransactionFeeReturnType = bigint; declare function getTransactionFee(client: Client, { txId }: GetTransactionFeeParameters): Promise; //#endregion export { GetTransactionFeeParameters, GetTransactionFeeReturnType, getTransactionFee }; //# sourceMappingURL=getTransactionFee.d.ts.map