import * as React from 'react';
import { AlertDefinition } from '../../../AdaptableState/AlertState';
import { AdaptableApi } from '../../../types';
import { AlertType } from '../Utilities/getAlertType';
export declare const renderAlertBehaviourWizardSummary: (alertDefinition: AlertDefinition) => React.JSX.Element;
export declare const renderAlertBehaviourSummary: (alert: AlertDefinition, api: AdaptableApi, allowWrap?: boolean) => React.JSX.Element;
type AlertBehaviourWizardSectionProps = {
    onChange: (data: AlertDefinition) => void;
    alertType: AlertType;
};
export declare const AlertBehaviourWizardSection: (props: AlertBehaviourWizardSectionProps) => React.JSX.Element;
export {};
