import * as React from 'react'; import { ExportDestination } from '../../PredefinedConfig/Common/Enums'; import { ILiveReport } from '../../Utilities/Interface/Reports/ILiveReport'; import { SharedEntityExpressionRowProps } from '../Components/SharedProps/ConfigEntityRowProps'; export interface ReportEntityRowProps extends SharedEntityExpressionRowProps { LiveReports: ILiveReport[]; onExport: (exportDestination: ExportDestination) => void; onReportStopLive: (exportDestination: ExportDestination.OpenfinExcel | ExportDestination.iPushPull) => void; } export declare class ReportEntityRow extends React.Component { render(): any; }