/// <reference types="react" />
import { IntentType, WithThemeProps } from '../../../Common/theming/types';
import { IconName } from '../../../Common/theming/icons';
export interface UpPanelProps extends WithThemeProps {
    title?: string | JSX.Element;
    footer?: string | JSX.Element;
    type?: IntentType;
    message?: string;
    iconName?: IconName | null;
    iconSize?: number;
    disableAutoIntentIcon?: boolean;
    className?: string;
}
