import { ISingleSelectOption } from '../../../features/MultiProduct/model/types'; import * as React from 'react'; interface SingleSelectProps { values: ISingleSelectOption[]; value: string | null; onValueChange: (value: string | null) => void; placeholder?: string; title?: string; className?: string; dropdownWidth?: string; align?: 'start' | 'center' | 'end'; showClear?: boolean; getTooltipByMaterialAndSection?: (material: string, section: string) => any; sectionName?: string; } declare const SingleSelect: React.ForwardRefExoticComponent>; export { SingleSelect }; export type { SingleSelectProps };