import { type GenerateTextResult } from 'ai'; import { type CellType, type CodeCellType } from '@srcbook/shared'; import { type SessionType } from '../types.mjs'; type NoToolsGenerateTextResult = GenerateTextResult<{}>; export declare function generateSrcbook(query: string): Promise; export declare function healthcheck(): Promise; type GenerateCellsResult = { error: boolean; errors?: string[]; cells?: CellType[]; }; export declare function generateCells(query: string, session: SessionType, insertIdx: number): Promise; export declare function generateCellEdit(query: string, session: SessionType, cell: CodeCellType): Promise; export declare function fixDiagnostics(session: SessionType, cell: CodeCellType, diagnostics: string): Promise; export {}; //# sourceMappingURL=generate.d.mts.map