import { AuthNostrService, NostrParams } from './index'; declare class AccountService { private authNostrService; private params; constructor(params: NostrParams, authNostrService: AuthNostrService); createAccount(nip05: string): Promise<{ bunkerUrl: string; sk: string | undefined; }>; } export default AccountService;