import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/navbar-section';
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 NavSection = ComponentConfig<typeof theme, AppConfig, 'navbarSection'>;
export interface NavbarSectionProps {
    /**
     * The element or component this component should render as.
     * @defaultValue 'div'
     */
    as?: any;
    class?: any;
    b24ui?: NavSection['slots'];
}
export interface NavbarSectionSlots {
    default(props?: {}): any;
}
declare const _default: typeof __VLS_export;
export default _default;
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<NavbarSectionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NavbarSectionProps> & Readonly<{}>, {
    as: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, NavbarSectionSlots>;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
