import { ViewPanelProps } from '../Components/SharedProps/ViewPanelProps';
import { SystemStatusMessageInfo } from '../../AdaptableState/Common/SystemStatusMessageInfo';
import * as React from 'react';
export interface SystemStatusViewPanelComponentProps extends ViewPanelProps {
    SystemStatusMessageInfos: SystemStatusMessageInfo[];
}
declare class SystemStatusViewPanelComponent extends React.Component<SystemStatusViewPanelComponentProps, {}> {
    constructor(props: SystemStatusViewPanelComponentProps);
    render(): React.JSX.Element;
}
export declare let SystemStatusViewPanel: import("react-redux").ConnectedComponent<typeof SystemStatusViewPanelComponent, {
    key?: React.Key | null | undefined;
    ref?: React.Ref<SystemStatusViewPanelComponent>;
    context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").UnknownAction>>;
    store?: import("redux").Store;
}>;
export {};
