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