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