import { LedgerAddress, LedgerAnchor } from "../../../types/src"; import { IAnchorsResolver } from './interfaces/anchors-resolver.interface'; /** * Anchors resolver class. */ export declare abstract class AnchorsResolver implements IAnchorsResolver { /** * Retrieves a list of anchors connected to a wallet address * * @param wallet wallet address connected to anchors */ abstract execute(wallet: LedgerAddress): Promise[]>; }