Params: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): Params;
    encode(message: Params, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ParamsAmino): Params;
    fromAminoMsg(object: ParamsAminoMsg): Params;
    fromPartial(object: {
        beginBlockGasLimit?: bigint;
        contractUnsuspendCost?: bigint;
        defaultGasPerCancel?: bigint;
        defaultGasPerOrder?: bigint;
        defaultGasPerOrderDataByte?: bigint;
        endBlockGasLimit?: bigint;
        gasAllowancePerSettlement?: bigint;
        maxOrderPerPrice?: bigint;
        maxPairsPerContract?: bigint;
        minProcessableRent?: bigint;
        minRentDeposit?: bigint;
        orderBookEntriesPerLoad?: bigint;
        priceSnapshotRetention?: bigint;
        sudoCallGasPrice?: string;
    }): Params;
    fromProtoMsg(message: ParamsProtoMsg): Params;
    toAmino(message: Params): ParamsAmino;
    toProto(message: Params): Uint8Array;
    toProtoMsg(message: Params): ParamsProtoMsg;
}