import { Script } from "@bsv/sdk"; import { Indexer, type ParseResult, type Txo } from "./types"; export declare class MapIndexer extends Indexer { owners: Set; network: "mainnet" | "testnet"; tag: string; name: string; constructor(owners?: Set, network?: "mainnet" | "testnet"); parse(txo: Txo): Promise; static parseMap(script: Script, mapPos: number): { [key: string]: unknown; } | undefined; }