import * as React from 'react';
import { AdaptableApi, FlashingCellDefinition } from '../../../types';
type FlashingAlertDurationWizardSectionProps = {
    readOnly?: boolean;
    flashingCell?: FlashingCellDefinition;
    onChange: (data: FlashingCellDefinition) => void;
};
export declare const isSettingsValid: (data: FlashingCellDefinition, api: AdaptableApi) => true | "Name is required" | "A Flashing Cell already exists with that name";
export declare const renderFlashingAlertSettingsSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element;
export declare const FlashingAlertSettingsWizardSection: (props: FlashingAlertDurationWizardSectionProps) => React.JSX.Element;
export {};
