export declare const CURSOR_MARKER = "\u001B_pi:c\u0007"; export interface FixedEditorClusterInput { width: number; terminalRows: number; statusLines?: string[]; topLines?: string[]; editorLines: string[]; secondaryLines?: string[]; transcriptLines?: string[]; lastPromptLines?: string[]; } export interface FixedEditorCursor { row: number; col: number; } export interface FixedEditorClusterRender { lines: string[]; cursor: FixedEditorCursor | null; } export declare function renderFixedEditorCluster(input: FixedEditorClusterInput): FixedEditorClusterRender; //# sourceMappingURL=cluster.d.ts.map