import { Slot } from 'vue'; import { ClassComponent } from '../ts-helpers'; import { InputTextEmits, InputTextProps, } from '../../components/inputtext/InputText.vue.d'; /** * InputURL component props */ export type InputURLProps = Omit; /** * InputURL component emits */ export type InputURLEmits = InputTextEmits; export type InputURLSlots = { 'addon-left': Slot; 'addon-right': Slot; }; /** * **WangsVue - InputURL** * * _Handle input url with form validation._ * * --- --- * ![WangsVue](https://www.wangs.id/wp-content/uploads/2023/12/cropped-Logo_Wangsid-removebg-preview-192x192.png) * * @group form */ declare class InputURL extends ClassComponent< InputURLProps, InputURLSlots, InputURLEmits > {} export default InputURL;