@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
29 lines (28 loc) • 1.03 kB
TypeScript
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/sidebar-header';
import type { ComponentConfig } from '../types/utils';
type SidebarHeader = ComponentConfig<typeof theme, AppConfig, 'sidebarHeader'>;
export interface SidebarHeaderProps {
/**
* The element or component this component should render as.
* @defaultValue 'div'
*/
as?: any;
class?: any;
b24ui?: SidebarHeader['slots'];
}
/**
* @todo add Pick<Xxxx
*/
export interface SidebarHeaderSlots {
default(props?: {}): any;
}
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<SidebarHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SidebarHeaderProps> & Readonly<{}>, {
as: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, SidebarHeaderSlots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};