import type { Cell } from "../elements.js"; import type { Frame } from "../frame.js"; export declare function cellsToANSI(cells: Cell[]): string; export declare function gridToANSI(grid: Cell[][]): string; export declare function toANSI(frame: Frame): string;