import { type Theme } from "../modes/theme/theme"; export interface CodeCellOptions { code: string; language?: string; index?: number; total?: number; title?: string; status?: "pending" | "running" | "warning" | "complete" | "error"; spinnerFrame?: number; duration?: number; output?: string; outputMaxLines?: number; codeMaxLines?: number; expanded?: boolean; width: number; } export declare function renderCodeCell(options: CodeCellOptions, theme: Theme): string[]; export interface MarkdownCellOptions { content: string; index?: number; total?: number; title?: string; status?: "pending" | "running" | "warning" | "complete" | "error"; spinnerFrame?: number; duration?: number; output?: string; outputMaxLines?: number; contentMaxLines?: number; expanded?: boolean; width: number; } export declare function renderMarkdownCell(options: MarkdownCellOptions, theme: Theme): string[];