import React from 'react'; import { type BasedAdditionalProps, type SelectBoxProps } from './SelectBox.types'; /** * The general-purpose SelectBox component. * This component switches the variants of looks and behaviors depends on the props: size, invalid, disabled. */ export declare const SelectBox: ((props: SelectBoxProps & { ref?: React.ForwardedRef; }) => React.ReactElement) & { displayName: string; };