import { LitElement } from 'lit'; import './index'; import '../checkbox'; import '../modal'; import '../textInput'; import '../overflowMenu'; import '../tag'; import '../button'; import '../accordion'; import '@kyndryl-design-system/shidoka-charts/components/chart'; /** Sample Lit component to show global filter pattern applied to a Chart. */ export declare class SampleFilterChartComponent extends LitElement { static styles: import("lit").CSSResult; /** Array of sample checkbox filter options. */ accessor checkboxOptions: Array; accessor chartLabels: Array; accessor filteredChartLabels: Array; accessor chartDatasets: Array; accessor chartOptions: { scales: { x: { title: { text: string; }; }; y: { title: { text: string; }; }; }; }; render(): import("lit-html").TemplateResult<1>; private _handleSearch; private _handleCheckboxes; private _handleModalClose; private _handleTagClick; private _handleClearTags; private _filter; firstUpdated(): void; } declare global { interface HTMLElementTagNameMap { 'sample-filter-chart-component': SampleFilterChartComponent; } } //# sourceMappingURL=globalFilter.chart.sample.d.ts.map