import { NavigationItem } from '../types'; import { CustomizableOptions } from '../../../composables/useCustomizableOptions'; type __VLS_Props = CustomizableOptions & { items?: NavigationItem[]; /** Si activé, une confirmation sera demandée avant de changer d'onglet */ confirmTabChange?: boolean; /** Message affiché dans la boîte de dialogue de confirmation (accepte un booléen pour rétrocompatibilité) */ confirmationMessage?: string | boolean; /** Largeur interne */ width?: string; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ 'navigation-bar-prepend': () => unknown; 'navigation-bar-append': () => unknown; default: () => unknown; }> & { 'navigation-bar-prepend': () => unknown; 'navigation-bar-append': () => unknown; default: () => unknown; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, { resetTabSelection: () => { activeTab: number; activeItemIndex: number; }; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "cancel-navigation": (...args: any[]) => void; "confirm-tab-change": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ "onCancel-navigation"?: ((...args: any[]) => any) | undefined; "onConfirm-tab-change"?: ((...args: any[]) => any) | undefined; }>, { width: string; items: NavigationItem[]; confirmTabChange: boolean; confirmationMessage: string | boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };