import type { FC } from 'react'; import type { LineConfig } from '../CodeSnippetContext'; import type { DisplayItem } from '../lib/foldUtils'; /** Color stick column component - renders color indicators for each line */ export declare const ColorStickColumn: FC<{ visibleDisplayItems: DisplayItem[]; lines: Map; lineHeightClass: string; }>;