import { Block, BlockchainInfo, Tx, TokenInfo, ScriptUtxo, Utxo } from 'chronik-client';
interface ChronikMocks {
    tipHeight: number;
    tipHash: string;
    block: Block;
    blockchainInfo: BlockchainInfo;
    txid: string;
    tx: Tx;
    tokenId: string;
    token: TokenInfo;
    rawTx: string;
    scriptUtxo: ScriptUtxo;
    utxo: Utxo;
}
declare const chronikMocks: ChronikMocks;
export default chronikMocks;
//# sourceMappingURL=index.d.ts.map