/** * WriteCell — renders a write tool call as a new-file view with added-line styling. */ export interface WriteCellMeta { toolKind: "write"; filePath: string; content?: string; truncated?: boolean; lineCount?: number; } interface WriteCellProps { meta: WriteCellMeta; isRunning: boolean; } export declare function WriteCell({ meta, isRunning }: WriteCellProps): import("react").JSX.Element; export {}; //# sourceMappingURL=WriteCell.d.ts.map