import type { FC } from 'react'; import { type SelectValueTextProps } from '../SelectValueText'; interface SelectInputBaseProps extends Omit, 'children' | 'color'> { 'data-testid'?: string; size?: 'small' | 'medium' | 'default'; } type SelectInputProps = SelectInputBaseProps & Pick; export declare const SelectInput: FC; export {};