import type { CommonDeviceTransactionField as DeviceTransactionField } from "@ledgerhq/ledger-wallet-framework/transaction/common";
import type { AccountLike, Account } from "@ledgerhq/types-live";
import type { Transaction, TransactionStatus } from "./types";
export type ExtraDeviceTransactionField = {
    type: "stellar.memo";
    label: string;
} | {
    type: "stellar.network";
    label: string;
} | {
    type: "stellar.assetCode";
    label: string;
} | {
    type: "stellar.assetIssuer";
    label: string;
};
declare function getDeviceTransactionConfig({ status: { amount, estimatedFees }, transaction, }: {
    account: AccountLike;
    parentAccount: Account | null | undefined;
    transaction: Transaction;
    status: TransactionStatus;
}): Promise<Array<DeviceTransactionField | ExtraDeviceTransactionField>>;
export default getDeviceTransactionConfig;
//# sourceMappingURL=deviceTransactionConfig.d.ts.map