import { Field } from '../field'; import { Form } from '../form'; import { FieldOptions } from '../interfaces'; export declare class UrlField extends Field { options: FieldOptions; urlFormat: RegExp; constructor(parent: HTMLElement, form: Form, options: FieldOptions); getValue(): string | null; }