bootstrap-vue-next
Version:
Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development
27 lines (26 loc) • 1.17 kB
TypeScript
import { ValidationState } from '../types';
type __VLS_Props = {
invalidFeedback: string | undefined;
validFeedback: string | undefined;
description: string | undefined;
feedbackAriaLive: string | undefined;
state: ValidationState | undefined;
tooltip: boolean | undefined;
invalidFeedbackId: string | undefined;
validFeedbackId: string | undefined;
descriptionId: string | undefined;
};
type __VLS_Slots = {
'invalid-feedback'?: (props: Record<string, never>) => any;
'valid-feedback'?: (props: Record<string, never>) => any;
'description'?: (props: Record<string, never>) => any;
};
declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, 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;
};
};