import type { IsURLOptions } from 'validator/lib/isURL'; interface IUrlParserParams extends IsURLOptions { message?: string; } /** * Parser to validate if the input value is a valid URL * @param params */ export declare function url(params?: IUrlParserParams): (value: string) => string; export {};