import * as React from 'react';
import { FlashingCellDefinition } from '../../../types';
type FlashingAlertDurationWizardSectionProps = {
    readOnly?: boolean;
    flashingCell?: FlashingCellDefinition;
    onChange: (data: FlashingCellDefinition) => void;
};
export declare const renderFlashingAlertSettingsSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element;
export declare const FlashingAlertSettingsWizardSection: (props: FlashingAlertDurationWizardSectionProps) => React.JSX.Element;
export {};
