/**
 * An utility to quickly create hooks to access both Session Storage and Local Storage
 */
declare const createStorageHook: (type: 'session' | 'local') => <TValue>(storageKey: string, defaultValue?: any) => [TValue, (value: TValue | ((previousValue: TValue) => TValue)) => void];
export default createStorageHook;
