import { Size } from '../../types/props'; import { IconPack } from '../../lib/icons'; import { DyteI18n } from '../../lib/lang'; /** * A menu item component. * * @slot - Default slot * @slot start - Slot for content you want at the start * @slot end - Slot for content you want at the end */ export declare class DyteMenuItem { /** Size */ size: Size; /** Icon pack */ iconPack: IconPack; /** Language */ t: DyteI18n; render(): any; }