GetBlockWithTxsResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): GetBlockWithTxsResponse;
    encode(message: GetBlockWithTxsResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: GetBlockWithTxsResponseAmino): GetBlockWithTxsResponse;
    fromAminoMsg(object: GetBlockWithTxsResponseAminoMsg): GetBlockWithTxsResponse;
    fromPartial(object: {
        block?: {
            data?: {
                txs?: Uint8Array[];
            };
            evidence?: {
                evidence?: {
                    duplicateVoteEvidence?: {
                        timestamp?: ...;
                        totalVotingPower?: ...;
                        validatorPower?: ...;
                        voteA?: ...;
                        voteB?: ...;
                    };
                    lightClientAttackEvidence?: {
                        byzantineValidators?: ...;
                        commonHeight?: ...;
                        conflictingBlock?: ...;
                        timestamp?: ...;
                        totalVotingPower?: ...;
                    };
                }[];
            };
            header?: {
                appHash?: Uint8Array;
                chainId?: string;
                consensusHash?: Uint8Array;
                dataHash?: Uint8Array;
                evidenceHash?: Uint8Array;
                height?: bigint;
                lastBlockId?: {
                    hash?: Uint8Array;
                    partSetHeader?: {
                        hash?: (...) | (...);
                        total?: (...) | (...);
                    };
                };
                lastCommitHash?: Uint8Array;
                lastResultsHash?: Uint8Array;
                nextValidatorsHash?: Uint8Array;
                proposerAddress?: Uint8Array;
                time?: Date;
                validatorsHash?: Uint8Array;
                version?: {
                    app?: bigint;
                    block?: bigint;
                };
            };
            lastCommit?: {
                blockId?: {
                    hash?: Uint8Array;
                    partSetHeader?: {
                        hash?: (...) | (...);
                        total?: (...) | (...);
                    };
                };
                height?: bigint;
                round?: number;
                signatures?: {
                    blockIdFlag?: BlockIDFlag;
                    signature?: Uint8Array;
                    timestamp?: Date;
                    validatorAddress?: Uint8Array;
                }[];
            };
        };
        blockId?: {
            hash?: Uint8Array;
            partSetHeader?: {
                hash?: Uint8Array;
                total?: number;
            };
        };
        pagination?: {
            nextKey?: Uint8Array;
            total?: bigint;
        };
        txs?: {
            authInfo?: {
                fee?: {
                    amount?: (...)[];
                    gasLimit?: bigint;
                    granter?: string;
                    payer?: string;
                };
                signerInfos?: {
                    modeInfo?: (...) | (...);
                    publicKey?: (...) | (...);
                    sequence?: (...) | (...);
                }[];
            };
            body?: {
                extensionOptions?: {
                    $typeUrl?: (...) | (...);
                    typeUrl?: (...) | (...);
                    value?: (...) | (...);
                }[];
                memo?: string;
                messages?: {
                    $typeUrl?: (...) | (...);
                    typeUrl?: (...) | (...);
                    value?: (...) | (...);
                }[];
                nonCriticalExtensionOptions?: {
                    $typeUrl?: (...) | (...);
                    typeUrl?: (...) | (...);
                    value?: (...) | (...);
                }[];
                timeoutHeight?: bigint;
            };
            signatures?: Uint8Array[];
        }[];
    }): GetBlockWithTxsResponse;
    fromProtoMsg(message: GetBlockWithTxsResponseProtoMsg): GetBlockWithTxsResponse;
    toAmino(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseAmino;
    toAminoMsg(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseAminoMsg;
    toProto(message: GetBlockWithTxsResponse): Uint8Array;
    toProtoMsg(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseProtoMsg;
}