import { LoggerService } from "../logger.service"; import { PropertiesStorage } from "./abstract/propertiesStorage"; export declare class WalletStorageService extends PropertiesStorage { private loggerService; removedWalletFilePath: string; protected readonly propertiesFilePath: any; protected propertiesMap: any; constructor(loggerService: LoggerService); getWallets(types?: string[]): any[]; getWalletByAddress(address: string): any; getWalletsByType(type: string): any[]; removeWallet(type: string, address: string): any; existsWallet(type: string, address: string): boolean; getWallet(type: string, address: string): any; addWallet(type: string, data: any): boolean; load(): void; save(): void; }