import * as React from 'react'; import { CommonProps } from '../../'; import * as types from '../../types'; export interface SelectedFiltersProps { clearValues?: (...args: any[]) => any; setValue?: (...args: any[]) => any; components?: types.components; selectedValues?: types.selectedValues; className?: string; clearAllLabel?: types.title; innerClass?: types.style; showClearAll?: boolean; style?: types.style; theme?: types.style; title?: types.title; } declare const SelectedFilters: React.ComponentType; export default SelectedFilters;