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