export declare function useSSRState<T>(initialValue: T | (() => T), key: string): [T, React.Dispatch<React.SetStateAction<T>>];
