import * as React from 'react';
import { AlertDefinition } from '../../../AdaptableState/AlertState';
import { AdaptableApi } from '../../../types';
import { AlertType } from '../Utilities/getAlertType';
import { BoxProps } from '../../../components/Flex';
export declare const renderAlertNotificationSummary: (data: AlertDefinition, api: AdaptableApi) => React.JSX.Element;
interface AlertPreviewProps extends BoxProps {
    className?: string;
    style?: React.CSSProperties;
    api: AdaptableApi;
    alertDefinition: AlertDefinition;
    focusFirstButton?: boolean;
}
export declare const AlertPreview: React.FunctionComponent<AlertPreviewProps>;
type AlertNotificationWizardSectionProps = {
    onChange: (data: AlertDefinition) => void;
    alertType: AlertType;
};
export declare const AlertNotificationWizardSection: (props: AlertNotificationWizardSectionProps) => React.JSX.Element;
export {};
