import { Page } from 'playwright';
export interface NoteDetail {
    title: string;
    content: string;
    tags: string[];
    imgs?: string[];
    videos?: string[];
    url: string;
    author: string;
    likes?: number;
    collects?: number;
    comments?: number;
}
export declare function GetNoteDetail(page: Page): Promise<NoteDetail>;
