import * as React from 'react'; import { AlertType } from '../Utilities/getAlertType'; import { AdaptableApi, AlertDefinition } from '../../../types'; export declare const isSettingsValid: (data: AlertDefinition, api: AdaptableApi) => true | "Name is required" | "An Alert already exists with that name"; export declare const renderAlertTypeSummary: (alertType: AlertType) => React.JSX.Element; type AlertTypeWizardSectionProps = { onAlertTypeChange: (alertType: AlertType) => void; alertType: AlertType | null; onChange: (data: AlertDefinition) => void; }; export declare const AlertTypeWizardSection: (props: AlertTypeWizardSectionProps) => React.JSX.Element; export {};