import * as React from 'react';
import { AlertDefinition } from '../../../AdaptableState/AlertState';
import { AdaptableApi } from '../../../types';
import { BoxProps } from 'rebass';
import { AlertType } from '../Utilities/getAlertType';
export declare const renderAlertNotificationSummary: () => React.JSX.Element;
interface AlertPreviewProps extends BoxProps {
    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 {};
