import { Component } from 'react'; export declare class FilterSelectItem extends Component<{ children?: any; className?: any; disabled?: any; checked?: any; isFocused?: any; showIcons?: any; onClick?: () => any; onKeyDown?: () => any; }> { private mounted; static propTypes: {}; state: { hasFocus: boolean; }; private buttonRef; static defaultProps: { showIcons: boolean; }; constructor(props: any); focus: () => void; onFocus: () => void; onBlur: () => void; hasFocus: () => boolean; render(): JSX.Element; }