bootstrap-vue-next
Version:
Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development
29 lines (28 loc) • 1.09 kB
text/typescript
import { ClassValue } from '../types/AnyValuedAttributes';
type __VLS_Props = {
label: string | undefined;
labelTag: string;
labelId: string | undefined;
computedLabelFor: string | null;
isFieldset: boolean;
isHorizontal: boolean;
labelColProps: Record<string, unknown>;
labelAlignClasses: string[];
labelClasses: ClassValue;
};
type __VLS_Slots = {
label?: (props: Record<string, never>) => any;
};
declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
legendClick: (event: MouseEvent) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
onLegendClick?: ((event: MouseEvent) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};