export type TargetValue<T, U> = Omit<T, 'value'> & {
    value: U;
};
