How to drop default data type range from the possible completion

For an interface mtu node as below

// interface * / mtu
leaf mtu {
description
“Set the interface Maximum Transmission Unit (MTU)”;
tailf:cli-full-command;
type uint16 {
range “64…18000”;
}
}

I am getting multiple range in possible completion.

Router(config-if)# mtu ?
Possible completions:
<0…65535, 64 … 18000>[9216]

0…65535 :- range of data type uint 16. Unwanted range
64 … 18000 :- User defined range. Only this shall get populated.

How to drop the data type range coming from the possible completion

Normally you would get something like:

Router(config-if)# mtu ?
Possible completions:
  <unsignedShort, 64 .. 18000>[9216]

Not sure if it something in your config, yang model, or ConfD version that makes CLI print the range of the type instead of the type.