import { BaseState } from './BaseState';
import { AdaptableObject } from './Common/AdaptableObject';
/**
 * Internal State used by AdapTable for managing the OpenFin plugin
 */
export interface OpenFinState extends BaseState {
    CurrentLiveOpenFinReport?: OpenFinReport;
    OpenFinCurrentReportName?: string;
}
/**
 * An OpenFin report
 */
export interface OpenFinReport extends AdaptableObject {
    /**
     * Name of Report (which will exist in the Export State)
     */
    ReportName: string;
}
