import '@vtmn/css-dropdown/dist/index-with-vars.css'; import { VitamixId } from '@vtmn/icons/dist/vitamix/font/vitamix'; import * as React from 'react'; export interface VtmnDropdownItemProps extends Omit, 'onChange'> { /** * Whether there is a divider at the end of the dropdown item. * @defaultValue false */ divider?: boolean; /** * The leading icon of the dropdown item. * @defaultValue undefined */ icon?: VitamixId; /** * The content to render inside the component. * @defaultValue undefined */ children?: React.ReactNode; /** * Called when item has changed * @type {void} * @defaultValue undefined */ onChange?: (event: React.ChangeEvent) => void; } export declare const VtmnDropdownItem: ({ divider, icon, children, onChange, ...props }: VtmnDropdownItemProps) => JSX.Element; declare const MemoVtmnDropdownItem: React.MemoExoticComponent<({ divider, icon, children, onChange, ...props }: VtmnDropdownItemProps) => JSX.Element>; export default MemoVtmnDropdownItem;