import type { ParsedPageData, ParseResult } from './types.js'; import { BaseParser } from './base-parser.js'; import type { IFetcher } from '../fetcher/types.js'; export * from './types.js'; export declare class ModaoParser extends BaseParser { static forceCloseBrowser(): Promise; parse(url: string): Promise; } export declare function parseModaoPage(url: string, fetcher?: IFetcher): Promise; export declare function parseModaoPageWithFallback(url: string): Promise; export declare function generateBrowserAgentPrompt(url: string): string;