import { type IconProps } from "@tabler/icons-react"; import type { ThemeSize } from "../../theme.types"; export interface ComboboxChevronProps extends IconProps { error?: React.ReactNode; size?: ThemeSize | number; ref?: React.Ref; } export declare function ComboboxChevron(props: ComboboxChevronProps): import("react").JSX.Element;