import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/navbar-section';
import type { ComponentConfig } from '../types/utils';
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: __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>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
