/** * CheckTxResponse type and creator */ export interface CheckTxResponse { readonly code: number; readonly data?: Uint8Array; readonly log?: string; readonly info?: string; readonly gasWanted?: bigint; readonly gasUsed?: bigint; readonly events?: readonly unknown[]; readonly codespace?: string; } export declare const CheckTxResponseCodec: import("../../../codec").BaseCodec; export declare function createCheckTxResponse(data: unknown): CheckTxResponse;