export declare const isValidExactUrl: (str: string) => boolean; export declare const isValidTelUrl: (str: string) => boolean; export declare const containsUrl: (url: string) => boolean | ""; export declare const isValidHref: (value: string) => boolean; export declare const normalizeHref: (value: string) => string | undefined; export declare const getUrlMatches: (text: string) => { index: number; lastIndex: number; raw: string; schema: string; text: string; url: string; }[]; export declare const normalizeUrl: (url: string) => string | null; export declare const startsWithHttps: (url: string) => boolean; export declare const getHost: (url: any) => string; export declare const hasProtocol: (url: string) => boolean; //# sourceMappingURL=urlValidators.d.ts.map