/** * Parses an absolute URL string; returns it only when the scheme is `https:`. * Returns `null` on parse errors or for non-https schemes (e.g. `http:`, relative input). * * @param uri - Absolute URL string to parse. * @returns A `URL` when the string is valid and uses `https:`; otherwise `null`. * * @example * ```ts * parseHttpsUrl('https://example.com/path'); * // URL { href: 'https://example.com/path' } * * parseHttpsUrl('http://example.com'); * // null * ``` */ export declare function parseHttpsUrl(uri: string): URL | null; //# sourceMappingURL=parse-https-url.d.ts.map