import * as React from 'react'; import { AdaptableStyle } from '../../../types'; import { FlashingCellDefinition } from '../../../../types'; import { BoxProps } from '../../../components/Flex'; type FlashingAlertStyleWizardSectionProps = { flashingAlert?: FlashingCellDefinition; onStyleChange: (styleName: 'UpChangeStyle' | 'DownChangeStyle' | 'NeutralChangeStyle', style: AdaptableStyle) => void; }; export declare const FlashingAlertStyleWizardSection: (props: FlashingAlertStyleWizardSectionProps) => React.JSX.Element; export interface FlashingCellStyleProps extends Omit { data: FlashingCellDefinition; } export declare const FlashingCellStyle: React.FunctionComponent; export declare const renderFlashingAlertStyleSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element; export {};