import React from 'react'; import { BaseComponentProps } from '../../base-component'; interface I18nStrings { filterLabel?: string; filterPlaceholder?: string; filterSelectedAriaLabel?: string; } interface ChartFilterItem { label: string; marker: React.ReactNode; 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;