import { LitElement, PropertyValueMap } from 'lit'; import '../../button'; import '../../globalFilter'; import '../index'; import '../../checkbox'; import '../../../../common/scss/global.scss?inline'; declare class StoryColumSetting extends LitElement { static styles: import("lit").CSSResult; set rows(value: any[]); get rows(): any[]; private _rows; accessor showOnlyHiddenCols: boolean; accessor showOnlyVisibleCols: boolean; accessor showingRows: any; accessor hoveredButtonId: string | null; accessor buttonIcon: any; handleLockingRow(event: any, rowId: string, locked: boolean): void; handleShowHiddenColsChange(event: CustomEvent): void; handleShowVisibleColsChange(event: CustomEvent): void; updated(_changedProperties: PropertyValueMap | Map): void; handleRowSelectionChange(event: CustomEvent, rowId: string): void; handleMouseOver(rowId: string): void; handleMouseOut(): void; getButtonIcon(rowId: string): any; getRows(): any; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'story-column-setting': StoryColumSetting; } } export {}; //# sourceMappingURL=column-setting.sample.d.ts.map