import { HoistModel } from '@xh/hoist/core'; /** * Shared display options for the grid column chooser, held as a single {@link AppContainerModel} * singleton so a toggle in one open chooser live-syncs to every other chooser on screen. Persisted * browser-local. * @internal */ export declare class ColChooserOptionsModel extends HoistModel { xhImpl: boolean; persistWith: { localStorageKey: string; }; showGroups: boolean; showLibrary: boolean; constructor(); init(): void; }