import { AnchorPropsWithSelection } from '@headlessui/react/dist/internal/floating'; import { FC, ReactNode, Dispatch } from 'react'; interface MenuOption { id: string; name: ReactNode; } interface MenuProps { selectedOption: ReactNode; value: string; onChange: Dispatch; options: MenuOption[]; title?: string; className?: string; anchor?: AnchorPropsWithSelection; } declare const Select: FC; export { Select };