import { defineComponent, type PropType, type Ref } from 'vue'; const component = defineComponent({ props: { id: String, class: String, invalidTextClass: String, helperTextClass: String, labelClass: String, label: String, invalidText: String, helperText: String, additionalHelperSlot: Object as PropType, containerRef: Object as PropType>, }, emits: { click: () => { return true; }, }, setup(props, ctx) { return () => { return ( ); }; }, }); export default component;