import React from 'react'; import { InternalInputProps } from '../../input/internal'; import { SelectProps } from '../interfaces'; export interface FilterProps extends InternalInputProps { ref?: React.Ref; filteringType: SelectProps.FilteringType; } declare const Filter: React.ForwardRefExoticComponent & React.RefAttributes>; export default Filter;