import { BigNumber } from "bignumber.js";
import { Transaction } from "../types/common";
declare const getEstimatedFees: (transaction: Transaction, address: string) => Promise<{
    fee: BigNumber;
    accountCreationFee: BigNumber;
}>;
export default getEstimatedFees;
//# sourceMappingURL=getEstimatedFees.d.ts.map