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