import * as React from 'react';
import { PanelProps } from '../../../components/Panel';
import { BoxProps } from 'rebass';
import { AdaptableSystemIconName } from '../../../AdaptableState/Common/AdaptableIcon';
export interface PanelWithImageProps extends PanelProps {
    glyphicon?: AdaptableSystemIconName;
    icon?: AdaptableSystemIconName;
    infoLink?: string;
    infoLinkDisabled?: boolean;
    borderRadius?: string;
    bodyProps?: BoxProps;
    theme: any;
    headerColor?: string;
    button?: React.ReactElement<any>;
}
export declare const PanelWithImage: any;
