import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * Menu item title * @type {string} */ title: string; /** * Menu item href * @type {string} */ href?: string | null | undefined; /** * Open in new tab */ isExternal?: boolean | undefined; /** * Is item active */ isActive?: boolean | undefined; darkmode?: boolean | undefined; mobile?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type MenuItemProps = typeof __propDef.props; export type MenuItemEvents = typeof __propDef.events; export type MenuItemSlots = typeof __propDef.slots; export default class MenuItem extends SvelteComponentTyped { } export {};