import { UiPreferencesDo, UiPreferencesStore } from '../index';
/**
 * Loads and stores {@link UiPreferencesDo} from/to the browser's local storage.
 */
export declare class LocalUiPreferencesStore extends UiPreferencesStore {
    /**
     * The key to use when reading/writing to the local storage.
     */
    protected get _storeId(): string;
    protected _load(): Promise<UiPreferencesDo>;
    protected _store(preferences: UiPreferencesDo): Promise<void>;
}
//# sourceMappingURL=LocalUiPreferencesStore.d.ts.map