export declare function createLocalStorageConnector(): {
    clear: () => void;
    connectedLibs: {};
    connect: <State>(lib: import("@stated-library/interface").StatedLibraryInterface<State, State, {}>, key: string) => any;
    disconnect: () => void;
};
declare const locStorage: {
    clear: () => void;
    connectedLibs: {};
    connect: <State>(lib: import("@stated-library/interface").StatedLibraryInterface<State, State, {}>, key: string) => any;
    disconnect: () => void;
};
export default locStorage;
export { locStorage };
