import { BaseWallet } from "."; export default class HardwareWallet extends BaseWallet { static LABEL: string; static TYPE: string; PATH_TYPE: { [key: string]: string; }; PATH_TYPE_NAME: { [key: string]: string; }; currentPathRule: string; currentPath: string; connected: boolean; PER_PAGE: number; CUSTOMIZAION_PATH: string; PREFIX_ETHEREUM_PATH: string; addresses: { [key: string]: string; }; getPathType(pathRule: string): string; setPath(pathRule: string, path: string): void; type(): string; id(): string; signMessage(message: string): Promise | null; getAddressesWithPath(pathRule: string, from: number, count: number): Promise<{ [key: string]: string; }>; getCurrentPathIndex(): number; getPath(pathRule: string, index: number): string; isSupported(): boolean; isLocked(): boolean; loadNetworkId(): Promise; sendCustomRequest(method: string, params: any): Promise; name(): string; }