import * as React from "react"; interface IOptions { persistedStateId?: string; } export declare function usePersistedState(defaultValue: T, options?: IOptions): [T, React.Dispatch>]; export {};