export declare function getItem(key: string): null | string;
export declare function setItem(key: string, value: string): void;
export declare function removeItem(key: string): void;
export declare function useLocalStorage(key: string, initialValue?: null | string): null | string;
