/** @noSelfInFile */ export declare const useState: (initialState: S | (() => S)) => [S, (nextState: S | ((oldState: S) => S)) => void]; export declare const useForceUpdate: () => () => void;