import type { FeeEstimation, MemoNotSupported, StringMemo, TransactionIntent } from "@ledgerhq/coin-module-framework/api/index"; import { ChainAPI } from "../network"; import type { SolanaTokenProgram } from "../types"; import { TransactionModel } from "../types"; /** * * @param api - The Solana API client * @param intent - The transaction intent * @param _customFeesParameters - The custom fees parameters (not used in this implementation) * @returns The estimated fees as a FeeEstimation object */ export declare function estimateFees(api: ChainAPI, intent: TransactionIntent, _customFeesParameters?: FeeEstimation["parameters"]): Promise; export declare function estimateTxFee(api: ChainAPI, address: string, kind: TransactionModel["kind"], tokenProgram?: SolanaTokenProgram): Promise; //# sourceMappingURL=estimateFees.d.ts.map