import React from 'react'; import { IconsProps } from './types'; /** * @param {boolean} isDisabled - Disabled component flag * @param {boolean} isLoading - Loading component flag * @param {boolean} value - Component value * @param {boolean} hasClearButton - Render clear button flag * @param {GlobalDefaultTheme} theme - Component theme * @param {boolean} isFocused - Focused component flag * @param {React.MouseEventHandler} onClearIconClick - Handler for clicking on clear icon * @returns {React.ReactElement} Component icons for multiselect */ export declare const Icons: ({ isDisabled, isLoading, value, theme, isFocused, onClearIconClick, hasClearButton, }: IconsProps) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>;