import { BaseComponentProps } from '../../base-component'; import { ChartSeriesMarkerType } from '../chart-series-marker'; interface I18nStrings { filterLabel?: string; filterPlaceholder?: string; filterSelectedAriaLabel?: string; } export interface ChartFilterItem { label: string; color: string; type: ChartSeriesMarkerType; datum: T; } export interface ChartFilterProps extends BaseComponentProps { series: ReadonlyArray>; selectedSeries?: ReadonlyArray; onChange: (selectedSeries: ReadonlyArray) => void; i18nStrings?: I18nStrings; } declare const _default: typeof ChartFilter; export default _default; declare function ChartFilter({ series, i18nStrings, selectedSeries, onChange, ...restProps }: ChartFilterProps): JSX.Element; //# sourceMappingURL=index.d.ts.map