/** * Cell - The atomic unit of the terminal surface grid. */ export interface Cell { char: string; fg: string; bg: string; bold: boolean; dim: boolean; underline: boolean; italic: boolean; strikethrough: boolean; link?: string | undefined; } /** * Line - A single horizontal row of Cells. */ export type Line = Cell[]; export declare const createEmptyCell: () => Cell; export declare const createEmptyLine: (width: number) => Line; /** * createStyledCell - Create a Cell with all defaults, applying only the provided overrides. */ export declare const createStyledCell: (char: string, overrides?: Partial>) => Cell; //# sourceMappingURL=grid.d.ts.map