import type { RouteLocationRaw } from 'vue-router'; import type { IconName } from './_internal/components/Icon/Icon.types'; export interface AppNavigationItemProps { /** * Location to navigate to */ to: RouteLocationRaw; /** * Icon to render on the left side */ icon: IconName; /** * Text label to render */ label: string; /** * Indicates whether the route is active or not */ isActive?: boolean; } declare var __VLS_12: {}, __VLS_30: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_12) => any; } & { 'sub-items'?: (props: typeof __VLS_30) => any; }; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { isActive: boolean; }, {}, {}, {}, 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; }; };