import React from 'react'; import { RegisterOptions, FieldPath, FieldValues } from 'react-hook-form'; interface UrlFieldProps extends Omit, 'name' | 'type'> { name: FieldPath; label?: string; error?: string; helperText?: string; required?: boolean; validation?: RegisterOptions; defaultValue?: string; wrapperClassName?: string; prefixIcon?: React.ReactNode; suffixIcon?: React.ReactNode; } export declare function UrlField({ name, label, error, wrapperClassName, helperText, required, validation, defaultValue, className, prefixIcon, suffixIcon, ...props }: UrlFieldProps): React.JSX.Element; export {};