import { ReactNode } from 'react'; export type Props = { children: ReactNode; value: T; }; export declare const DropdownItem: (props: Props) => null;