/// <reference types="node" />
import { Context } from 'koishi';
export interface LinkDetail {
    extractedContent: string;
    fullname: string;
    timestamp: number;
    timeText: string;
    screenshot: Buffer;
    images: Buffer[];
}
export declare function capturehtml(nitterUrl: string, ctx: Context, account: string, id: string, getScreenshot: boolean, sendImage: boolean, width: number): Promise<LinkDetail>;
