import { DefineComponent } from 'vue'; import { Nullable } from '../ts-helpers'; /** * InputURL component props */ export interface InputURLProps { /** * Model value for the input field */ modelValue?: string; /** * Label for the input field */ label?: string; /** * Field name for the input field */ fieldName?: string; /** * Determines if the field is mandatory */ mandatory?: boolean; /** * Determines if the field uses a validator */ useValidator?: boolean; /** * Validator message for the input field */ validatorMessage?: string; /** * Custom invalid state. */ invalid?: boolean; /** * Placeholder for the input field */ placeholder?: string; /** * Determines if the input field is disabled */ disabled?: boolean; /** * Show information to user about the field. */ fieldInfo?: string; } /** * InputURL component emits */ export type InputURLEmits = { /** * Event emitted when the model value is updated */ 'update:modelValue': [payload?: Nullable]; }; /** * **TSVue - InputURL** * * _Handle input email with form validation._ * * --- --- * ![TSVue](https://ik.imagekit.io/kurniadev/TS-HEAD-BLACK.png) * * @group form */ declare const InputURL: DefineComponent; export default InputURL;