import * as React from 'react';
import { FlashingCellDefinition } from '../../../AdaptableState/FlashingCellState';
import { AdaptableApi } from '../../../types';
export interface FlashingAlertRulesWizardSectionProps {
    onChange: (data: FlashingCellDefinition) => void;
}
export declare const renderFlashingAlertRulesSummary: (flashingAlert: FlashingCellDefinition, api: AdaptableApi) => React.JSX.Element;
export declare const FlashingAlertRulesWizardSection: (props: FlashingAlertRulesWizardSectionProps) => React.JSX.Element;
