/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net */ /** * @module ui/form */ import type { IUIInputValidator } from "../../../../types/index"; /** * Input is required */ export declare const required: IUIInputValidator; /** * Input value should be valid URL */ export declare const url: IUIInputValidator;