export interface SecureFetchHtmlOptions {
    userAgent?: string;
    timeout?: number;
    maxRedirections?: number;
    cookieHeaderForUrl?: (url: string) => string | undefined;
}
export declare function secureFetchHtml(url: string, options?: SecureFetchHtmlOptions): Promise<{
    html: string;
    finalUrl: string;
}>;
