declare const useMemoizedState: <T>(initialValue: T) => [T, (val: T) => void];
export default useMemoizedState;
