import { Observable } from 'rxjs';
import { prop, parse } from './prop';
import { ILocalStorageOptions, ILocalStorageChangedEvent, LocalStorageProp } from './types';
export { ILocalStorageOptions, LocalStorageProp };
export * from './types';
export declare const localStorage: {
    prop: typeof prop;
    parse: typeof parse;
    changes$: Observable<ILocalStorageChangedEvent>;
};
