import * as React from 'react'; import { StrategySummaryProps } from '../Components/SharedProps/StrategySummaryProps'; import { EditableConfigEntityState } from '../Components/SharedProps/EditableConfigEntityState'; import * as FlashingCellRedux from '../../Redux/ActionsReducers/FlashingCellsRedux'; import { FlashingCell } from '../../PredefinedConfig/RunTimeState/FlashingCellState'; export interface FlashingCellSummaryProps extends StrategySummaryProps { FlashingCells: FlashingCell[]; onSelectFlashingCell: (flashingCell: FlashingCell) => FlashingCellRedux.FlashingCellSelectAction; } export declare class FlashingCellSummaryComponent extends React.Component { render(): any; onFlashingSelectedChanged(flashingCell: FlashingCell): void; } export declare let FlashingCellSummary: React.ComponentClass;