import { PropertyValues, ReactiveObject } from '../reactive-object.js'; export declare class ReactiveLocalStorage extends ReactiveObject { readonly handler: string; readonly overwrite: boolean; constructor(handler: string, overwrite?: boolean); protected __update(_changedProperties: PropertyValues): void; /** * Loads the data from the localstorage * @returns true if there were some data, false otherwise */ protected loadData(): boolean; protected saveData(): void; } //# sourceMappingURL=localstorage.d.ts.map