@nuxtwind/components
Version:
Component Library for Nuxt 3 using TailwindCSS
24 lines (23 loc) • 953 B
text/typescript
import type { TextareaProps } from '../types/props.js';
export interface RequiredTextareaProps extends TextareaProps {
modelValue: string;
}
declare var __VLS_1: {}, __VLS_9: {}, __VLS_17: {};
type __VLS_Slots = {} & {
'prepend-icon'?: (props: typeof __VLS_1) => any;
} & {
'append-icon'?: (props: typeof __VLS_9) => any;
} & {
label?: (props: typeof __VLS_17) => any;
};
declare const __VLS_base: import("vue").DefineComponent<RequiredTextareaProps, {
textarea: import("vue").Ref<null, null>;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, 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;
};
};