import type { CommonDeviceTransactionField } from "@ledgerhq/ledger-wallet-framework/transaction/common"; import type { Account, AccountLike } from "@ledgerhq/types-live"; import type { SolanaExtraDeviceTransactionField, Transaction } from "./types"; type DeviceTransactionField = CommonDeviceTransactionField | SolanaExtraDeviceTransactionField; export type SolanaExtraDeviceFields = SolanaExtraDeviceTransactionField["type"]; declare function getDeviceTransactionConfig({ account, transaction, }: { account: AccountLike; parentAccount: Account | null | undefined; transaction: Transaction; }): Promise>; export default getDeviceTransactionConfig; //# sourceMappingURL=deviceTransactionConfig.d.ts.map