import { DataEvent } from "@nmshd/runtime"; export declare class AccountSelectedEvent extends DataEvent<{ localAccountId: string; address: string; }> { static readonly namespace = "runtime.accountSelected"; /** * Create an AccountSelected Event * @param localAccountId The accountId of the selected account. */ constructor(address: string, localAccountId: string); } //# sourceMappingURL=AccountSelectedEvent.d.ts.map