export type OnUpdateValue = (value: string & number & boolean) => void; export type OnUpdateValueImpl = (value: string | number | boolean) => void;