/** * TxSearchResponse type and creator */ import { TxResponse } from '../tx/tx-response'; export interface TxSearchResponse { readonly txs: readonly TxResponse[]; readonly totalCount: number; } export declare const TxSearchResponseCodec: import("../../../codec").BaseCodec; export declare function createTxSearchResponse(data: unknown): TxSearchResponse;