import * as React from 'react';
import { AlertDefinition } from '../../../AdaptableState/AlertState';
import { AlertType } from '../Utilities/getAlertType';
export declare const getRuleStepDescription: (alertType: AlertType) => "" | React.JSX.Element;
export declare const renderAlertRulesSummary: (alertDefinition: AlertDefinition) => React.JSX.Element;
export interface AlertRulesWizardSectionProps {
    onChange: (data: AlertDefinition) => void;
    module: 'alert';
    wholeRowScope?: boolean;
    alertType: AlertType | null;
}
export declare const AlertRulesWizardSection: (props: AlertRulesWizardSectionProps) => React.JSX.Element;
