import type { IResolvedCursorOption, CursorLineColor, CursorLineWidth } from '../../../abstraction'; export declare class CursorOption implements IResolvedCursorOption { lineColor: [string, string]; lineWidth: [number, number]; constructor(); setLineColor(color: string): void; setLineColor(color: CursorLineColor): void; setLineWidth(width: number): void; setLineWidth(width: CursorLineWidth): void; }