import { ComponentProps, FC } from 'react'; import { BastListItem } from '../../../entities/list'; import { TDropdownValue } from '../model/DropdownContext'; type TBastDropdownOption = { value?: TDropdownValue; children?: string | null; } & Omit, 'children'>; declare const BastDropdownOption: FC; export { BastDropdownOption };