import { type ExecuteDeviceActionReturnType, type SendCommandInAppDAError, type SendCommandInAppDAIntermediateValue, type SendCommandInAppDAOutput, type UserInteractionRequired } from "@ledgerhq/device-management-kit"; import { type PublicKey } from "../model/PublicKey"; import { type SolanaAppErrorCodes } from "../../internal/app-binder/command/utils/SolanaApplicationErrors"; type GetAddressDAUserInteractionRequired = UserInteractionRequired.None | UserInteractionRequired.VerifyAddress; export type GetAddressDAOutput = SendCommandInAppDAOutput; export type GetAddressDAError = SendCommandInAppDAError; export type GetAddressDAIntermediateValue = SendCommandInAppDAIntermediateValue; export type GetAddressDAReturnType = ExecuteDeviceActionReturnType; export {}; //# sourceMappingURL=GetAddressDeviceActionTypes.d.ts.map