ResponseInitChain: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ResponseInitChain;
    encode(message: ResponseInitChain, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ResponseInitChainAmino): ResponseInitChain;
    fromAminoMsg(object: ResponseInitChainAminoMsg): ResponseInitChain;
    fromPartial(object: {
        appHash?: Uint8Array;
        consensusParams?: {
            block?: {
                maxBytes?: bigint;
                maxGas?: bigint;
            };
            evidence?: {
                maxAgeDuration?: {
                    nanos?: number;
                    seconds?: bigint;
                };
                maxAgeNumBlocks?: bigint;
                maxBytes?: bigint;
            };
            validator?: {
                pubKeyTypes?: string[];
            };
            version?: {
                appVersion?: bigint;
            };
        };
        validators?: {
            power?: bigint;
            pubKey?: {
                ed25519?: Uint8Array;
                secp256k1?: Uint8Array;
            };
        }[];
    }): ResponseInitChain;
    fromProtoMsg(message: ResponseInitChainProtoMsg): ResponseInitChain;
    toAmino(message: ResponseInitChain): ResponseInitChainAmino;
    toProto(message: ResponseInitChain): Uint8Array;
    toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg;
}