import { WalletError } from './index'; /** * Class representing a wallet not implemented error. * * @class WalletNotImplementError * @extends WalletError * @param {string} method - The method that is not implemented. */ export declare class WalletNotImplementError extends WalletError { constructor(method: string); }