/** * SelectionIndicator & ListRow Components * * Visual selection system with left accent bar and ASCII checkboxes. * SelectionIndicator renders the accent bar + optional checkbox. * ListRow wraps a full row with selection behavior. * * @since v2.7.6 - Redesigned with accent bar and ListRow wrapper */ import React from 'react'; import type { ReactNode } from 'react'; export interface SelectionIndicatorProps { isSelected: boolean; color?: string; checkbox?: 'checked' | 'unchecked' | 'none'; } declare function SelectionIndicatorBase({ isSelected, color, checkbox }: SelectionIndicatorProps): React.ReactElement; export declare const SelectionIndicator: React.MemoExoticComponent; export interface ListRowProps { children: ReactNode; selected: boolean; checked?: boolean; accentColor?: string; } declare function ListRowBase({ children, selected, checked, accentColor }: ListRowProps): React.ReactElement; export declare const ListRow: React.MemoExoticComponent; export {}; //# sourceMappingURL=SelectionIndicator.d.ts.map