import { type IndexSummary, Indexer, type ParseContext, type ParseResult, type Txo } from "./types"; /** * FundIndexer identifies P2PKH outputs to owned addresses. * These are standard "funding" UTXOs that can be spent normally. * * Data structure: string (address) * * Basket: 'fund' * Tags: None */ export declare class FundIndexer extends Indexer { owners: Set; network: "mainnet" | "testnet"; tag: string; name: string; constructor(owners?: Set, network?: "mainnet" | "testnet"); parse(txo: Txo): Promise; summarize(ctx: ParseContext): Promise; }