import type { ViewProps } from "@tarojs/components/types/View"; import { type CSSProperties, type ReactNode } from "react"; import type { ExitHandler } from "react-transition-group/Transition"; import type { DropdownMenuItemOption } from "./dropdown-menu.shared"; export interface DropdownMenuItemProps extends ViewProps { style?: CSSProperties; __dataKey__?: any; defaultValue?: any | any[]; value?: any | any[]; disabled?: boolean; lock?: boolean; title?: ReactNode; children?: ReactNode; options?: DropdownMenuItemOption[]; onChange?(value: any | any[]): void; onOpen?(): void; onClose?(): void; onOpened?(): void; onClosed?(): void; onTransitionExited?: ExitHandler; } declare function DropdownMenuItem(props: DropdownMenuItemProps): JSX.Element; export default DropdownMenuItem;