/** * QueryProof type and creator */ import { ProofOp } from './proof-op'; export interface QueryProof { readonly ops: readonly ProofOp[]; } export declare const QueryProofCodec: import("../../../codec").BaseCodec; export declare function createQueryProof(data: unknown): QueryProof;