import './index.css'; import { MenuItemProps } from '../MenuItem'; import { ReactNode } from 'react'; export type DropdownMenuItemProps = Omit & { secondary?: ReactNode; contentFullWidth?: boolean; }; /** * DropdownSelectorの選択肢として使うMenuItem */ export default function DropdownMenuItem(props: DropdownMenuItemProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map