ResponseCheckTx: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ResponseCheckTx;
    encode(message: ResponseCheckTx, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ResponseCheckTxAmino): ResponseCheckTx;
    fromAminoMsg(object: ResponseCheckTxAminoMsg): ResponseCheckTx;
    fromPartial(object: {
        code?: number;
        codespace?: string;
        data?: Uint8Array;
        events?: {
            attributes?: {
                index?: boolean;
                key?: Uint8Array;
                value?: Uint8Array;
            }[];
            type?: string;
        }[];
        gasUsed?: bigint;
        gasWanted?: bigint;
        info?: string;
        log?: string;
    }): ResponseCheckTx;
    fromProtoMsg(message: ResponseCheckTxProtoMsg): ResponseCheckTx;
    toAmino(message: ResponseCheckTx): ResponseCheckTxAmino;
    toProto(message: ResponseCheckTx): Uint8Array;
    toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg;
}