export interface FetchResult { html: string; finalUrl: string; statusCode: number; contentType: string; } export declare function fetchPage(url: string, options?: { timeout?: number; headers?: Record; }): Promise;