/** * AbciInfoResponse type and creator */ export interface AbciInfoResponse { readonly data?: string; readonly lastBlockHeight?: number; readonly lastBlockAppHash?: Uint8Array; } export declare const AbciInfoResponseCodec: import("../../../codec").BaseCodec; export declare function createAbciInfoResponse(data: unknown): AbciInfoResponse;