import type { CommonResponse } from './utils'; interface IParam { weblink: string; } export interface CrawlData { title?: string; type?: string; image?: string; url?: string; href?: string; description?: string; siteName?: string; contentType: string[]; } export declare function crawl({ weblink }: IParam): Promise, any>>; export {};