import { default as React } from 'react'; import { ChipsGroupProps } from '../Chips'; import { OptionProps } from './Option.types'; interface OptionChipsProps { multiple: boolean; disabled: boolean; readOnly: boolean; selectedOptions: OptionProps[]; deselectOptionValue: (value: string | undefined) => void; chipGroupProps: Partial & { selectedChips?: string[]; }; input: React.ReactNode; } /** * Presentational component responsible solely for rendering chip group + input. * Keeps structural concerns out of the main Select component. */ export declare const OptionChips: React.FC; export default OptionChips;