import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/navbar'; import type { ComponentConfig } from '../types/tv'; /** * @deprecated This component is deprecated and will be removed in version `3.0.0` * - use [Header](https://bitrix24.github.io/b24ui/docs/components/header/) * - use [PageHeader ](https://bitrix24.github.io/b24ui/docs/components/page-header/) * - use [DashboardNavbar](https://bitrix24.github.io/b24ui/docs/components/dashboard-navbar/) * * @removed 3.0.0 */ type Navbar = ComponentConfig; export interface NavbarProps { /** * The element or component this component should render as. * @defaultValue 'nav' */ as?: any; class?: any; b24ui?: Navbar['slots']; } export interface NavbarSlots { default(props?: {}): any; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, { as: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, NavbarSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };