import React from "react"; import { type NIcon } from "../helpers/icons.js"; export interface NMenuItemProps { title: string; shortcut?: string; icon?: NIcon; onPress?: () => void; /** Alias of `onPress`, as the React package names it. */ onAction?: () => void; isDisabled?: boolean; /** Alias of `isDisabled`. */ disabled?: boolean; hasSeparator?: boolean; /** Alias of `hasSeparator`: draws a divider after the item. */ separator?: boolean; className?: string; titleClassName?: string; shortcutClassName?: string; } export declare const NMenuItem: React.NamedExoticComponent; //# sourceMappingURL=NMenuItem.d.ts.map