/** * AbciQueryParams type and creator */ import { EncodedAbciQueryParams } from './encoded-abci-query-params'; export interface AbciQueryParams { readonly path: string; readonly data: Uint8Array; readonly height?: number; readonly prove?: boolean; } export declare const AbciQueryParamsCodec: import("../../../codec").BaseCodec; export declare function encodeAbciQueryParams(params: AbciQueryParams): EncodedAbciQueryParams;