import * as React from 'react';
import { AlertDefinition } from '../../../AdaptableState/AlertState';
import { AlertType } from '../Utilities/getAlertType';
type AlertScopeWizardSectionProps = {
    onChange: (data: AlertDefinition) => void;
    alertType: AlertType;
};
export declare const AlertScopeWizardSection: (props: AlertScopeWizardSectionProps) => React.JSX.Element;
export {};
