import { VNode } from 'vue'; import { InputTextEmits, InputTextProps } from '../inputtext'; import { ClassComponent } from '../ts-helpers.d'; /** * InputURL component props */ export interface InputURLProps extends Omit {} /** * InputURL component emits */ export interface InputURLEmits extends InputTextEmits {} export interface InputURLSlots { 'addon-left': () => VNode[]; 'addon-right': () => VNode[]; } /** * **WangsVue - InputURL** * * _Handle input url with form validation._ * * --- --- * ![WangsVue](https://www.wangsit.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;