declare module 'nuxt/schema' { interface AppConfig { i18n: { supportedLocales: Array<{ code: string; file: string; default: boolean; }>; }; ui: { showBreadcrumbs: boolean; showSearchBar: boolean; isHeaderFixed: boolean; isAuthModals: boolean; notificationPosition: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; }; } } export {};