export declare const validateUrl: (url: string) => boolean;
export declare const validateUrlWithProtocol: (url: string) => boolean;
export declare const MATCHERS: ((text: string) => {
    index: number;
    length: number;
    text: string;
    url: string;
} | null)[];
export declare const ensureHttps: (url: string) => string;
