import 'reflect-metadata'; import { ProxyWalletService } from './services/proxyWalletService/proxyWalletService'; import { RoomService } from './services/roomService/roomService'; import { PayloadService } from './services/payloadService/payloadService'; import { MetamaskService } from './services/metamask/metamaskService'; import { network } from '../../models/network.enum'; import { BouncerService } from './services/bouncerService/bouncerService'; import { EnvironmentService } from '../utils/services/environmentService/environementService'; import { FetchRoomService } from '../utils/services/fetchRoomService/fetchRoomService'; import { RightService } from '../utils/services/rightService/rightService'; import { UserAndProfileService } from './services/userAndProfileService/userAndProfileService'; import { RightUtilsService } from './services/rightUtilsService/rightUtilsService'; import { MessageService } from './services/messageService/messageService'; import { UsersService } from './services/usersService/usersService'; export declare class SPKZ { container: import("tsyringe").DependencyContainer; wallets: ProxyWalletService; bouncer: BouncerService; environmentService: EnvironmentService; room: RoomService; payloadService: PayloadService; metamaskService: MetamaskService; fetchRoomService: FetchRoomService; rightService: RightService; userAndProfileService: UserAndProfileService; rightUtilsService: RightUtilsService; messageService: MessageService; usersService: UsersService; get privateKey(): string; static fromPrivateKey: (privateKey: any) => SPKZ; checkAuthorizations: () => Promise; } export { network };