import type { IconColor, IconName } from '../Icon'; export type DropdownItemProps = { /** * Define if a dropdown item is disabled or not */ disabled?: boolean; /** * Define if a dropdown item has a danger action. This property will change the dropdown item styles */ negative?: boolean; /** * Define a description for the dropdown item. It will be displayed below the label */ description?: string; /** * Define a label for the dropdown item. It will be displayed as the main content */ label?: string; /** * Define an icon for the dropdown item. It will be displayed on the left side of the label */ icon?: IconName; /** * Define the color of the icon. Default is 'primary' */ iconColor?: IconColor; /** * Define the role of the dropdown item. Default is 'menuitem' */ role?: string; /** * Define the tag of the dropdown item. Default is 'li' */ tag?: string; /** * Define the to attribute for the dropdown item. Should be used along with router-link */ to?: Record; /** * Define if the description should be hidden from accessibility tools. Default is false */ hideDescription?: boolean; }; declare var __VLS_11: {}, __VLS_18: {}, __VLS_20: {}, __VLS_22: {}; type __VLS_Slots = {} & { icon?: (props: typeof __VLS_11) => any; } & { label?: (props: typeof __VLS_18) => any; } & { default?: (props: typeof __VLS_20) => any; } & { description?: (props: typeof __VLS_22) => any; }; declare const __VLS_base: import("vue").DefineComponent any; keydown: (event: KeyboardEvent) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onClick?: ((event: MouseEvent) => any) | undefined; onKeydown?: ((event: KeyboardEvent) => any) | undefined; }>, { label: string; role: string; description: string; tag: string; to: Record; icon: IconName; iconColor: IconColor; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };