export declare function useLocalState<T>(key: string, initialValue: T): [T, (value: T) => void];
