export interface PullOptions { cwd: string; version?: string; docsDir?: string; } export interface PullResult { success: boolean; docsPath?: string; nextjsVersion?: string; error?: string; } /** * Pull Next.js documentation to a local directory (temporary by default). */ export declare function pullDocs(options: PullOptions): Promise;