export interface SetLocalStorageProps { key: string; value: any; } export default function SetLocalStorage({ key, value }: SetLocalStorageProps): boolean;