import type { TLine as TSyntxLine } from 'syntx'; import type { TTheme } from '../../types'; export declare type TLine = { index: number; lineWidth: number; line: TSyntxLine; theme: TTheme; }; export declare const Line: import("refun").TComponent;