import type { Account, Currency, Permission } from "@ledgerhq/wallet-api-core"; import type { ServerConfig, WalletHandlers } from "@ledgerhq/wallet-api-server"; export type SimulatorProfile = { debug?: boolean; config: ServerConfig; permissions: Omit; accounts: Account[]; currencies: Currency[]; methods: Partial | ((ctx: { accounts: Account[]; currencies: Currency[]; }) => Partial); }; //# sourceMappingURL=types.d.ts.map