export interface GetLocalStorageProps { key: string; /** What to return if the key doesn't exist or parsing fails */ fallback?: any; } export default function GetLocalStorage({ key, fallback }: GetLocalStorageProps): any;