import { Indexer, type ParseResult, type Txo } from "./types"; export interface CosignData { address: string; cosigner: string; } export declare class CosignIndexer extends Indexer { owners: Set; network: "mainnet" | "testnet"; tag: string; name: string; constructor(owners?: Set, network?: "mainnet" | "testnet"); parse(txo: Txo): Promise; }