/** * AbciQueryResponse type and creator */ import { QueryProof } from './query-proof'; export interface AbciQueryResponse { readonly key: Uint8Array; readonly value: Uint8Array; readonly proof?: QueryProof; readonly height: number; readonly index: number; readonly code: number; readonly codespace: string; readonly log: string; readonly info: string; } export declare const AbciQueryResponseCodec: import("../../../codec").BaseCodec; export declare function createAbciQueryResponse(data: unknown): AbciQueryResponse;