import * as React from 'react'; import { CommonProps } from '../../'; import * as types from '../../types'; export interface RatingsFilterProps extends CommonProps { beforeValueChange?: (...args: any[]) => any; customQuery?: (...args: any[]) => any; data?: types.data; dataField: string; defaultSelected?: types.range; filterLabel?: string; innerClass?: types.style; onValueChange?: (...args: any[]) => any; react?: types.react; title?: types.title; } declare const RatingsFilter: React.ComponentType; export default RatingsFilter;