import { ComponentProps, FC, PropsWithChildren } from 'react'; import { TDropdownValue } from '../model/DropdownContext'; import { BastDropdownOption } from './BastDropdownOption'; type TBastDropdown = PropsWithChildren<{ placeholder?: string; label?: string; value?: TDropdownValue; onChange?: (value: TDropdownValue) => void; }> & Omit, 'onChange' | 'value'>; type TBastDropdownWithStaticProps = { Option: typeof BastDropdownOption; }; declare const BastDropdown: FC & TBastDropdownWithStaticProps; export { BastDropdown };