import { Inscription, Network } from "@keplr-wallet/types"; export interface UniSatInscriptionDataItem { utxo: { txid: string; vout: number; satoshi: number; address: string; }; address: string; offset: number; inscriptionNumber: number; inscriptionId: string; contentType?: string; height: number; } export interface UniSatInscriptionDataResponse { code: number; msg?: string; data: { cursor: number; total: number; totalConfirmed?: number; totalUnconfirmed?: number; totalUnconfirmedSpend?: number; inscription: UniSatInscriptionDataItem[]; }; } export declare const getOrdinalsExplorerBaseUrl: (network: Network) => string; export declare const adaptUniSatInscriptionDataResponse: (network: Network, response: UniSatInscriptionDataResponse) => { total: number; list: Inscription[]; };