import * as React from 'react'; import * as Redux from 'redux'; import { AdaptableBlotterObject } from '../../../PredefinedConfig/AdaptableBlotterObject'; export interface StrategyDetailProps extends React.ClassAttributes { key: string; Item1: any; Item2: any; ConfigEnity: AdaptableBlotterObject; EntityType: string; onEdit: () => void; onShare: () => void; onDelete: Redux.Action; showBold?: boolean; showEdit?: boolean; showShare?: boolean; } export declare class StrategyDetail extends React.Component { render(): any; }