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