import * as React from 'react';
import { BoxProps } from 'rebass';
import { AdaptableStyle } from '../../../types';
import { FlashingCellDefinition } from '../../../../types';
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<BoxProps, 'data'> {
    data: FlashingCellDefinition;
}
export declare const FlashingCellStyle: React.FunctionComponent<FlashingCellStyleProps>;
export declare const renderFlashingAlertStyleSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element;
export {};
