import type { Balance } from '@ant-design/web3-common'; import type { Inscription } from './types'; export declare const getBalanceObject: (sats: number) => Balance; export declare const getBalanceByMempool: (address: string) => Promise; export declare const getInscriptionsByAddress: ({ address, limit, offset, }: { address: string; limit: number; offset: number; }) => Promise<{ total: number; list: Inscription[]; }>; export declare const getInscriptionContentById: (inscriptionId: string) => Promise;