import * as React from 'react'; import { AdaptableColumn } from '../../AdaptableState/Common/AdaptableColumn'; import { PreviewInfo } from '../../Utilities/Interface/Preview'; import { AdaptableApi } from '../../Api/AdaptableApi'; export interface PreviewResultsPanelProps extends React.ClassAttributes { previewInfo: PreviewInfo; api: AdaptableApi; selectedColumn: AdaptableColumn; showPanel: boolean; style?: React.CSSProperties; showHeader: boolean; className?: string; } export declare class PreviewResultsPanel extends React.Component { render(): any; private getValidationErrorMessage; }