/** * @file updators throttled by every frame * @author chenqiang(chenqiang03) */ type Updater = (prev?: ValueType) => ValueType; export default function useFrameState(defaultValue: ValueType): [ValueType, (updater: Updater) => void]; export {};