import type { Terminal } from '../../types/index.js'; /** * Creates a mock Terminal object for testing state detectors. * @param lines - Array of strings representing terminal output lines * @param options - Optional configuration for rows, cols, and baseY * @returns Mock Terminal object with buffer interface */ export declare const createMockTerminal: (lines: string[], options?: { rows?: number; cols?: number; baseY?: number; }) => Terminal;