import { type FilterSelectBoxProps } from './FilterSelectBox.types'; /** * The FilterSelectBox component. * This component extends SelectBox with custom styling and display value formatting. * This component switches the variants of looks and behaviors depends on the props: size, disabled. */ export declare function FilterSelectBox({ label, onOpenStateChanged, className, enableClearButton, clearButtonProps, ...props }: FilterSelectBoxProps): import("react/jsx-runtime").JSX.Element;