export declare function createUpdater<T, U>(host: T, getter: (x: T) => U, setter: (x: T, v: U) => void, shouldUpdate: (reduced: U, value: U) => boolean): (value: U) => void;