import React from 'react';
import { BoxProps } from 'rebass';
import { FlashingCellDefinition } from '../../types';
export interface FlashingCellStyleProps extends Omit<BoxProps, 'data'> {
    data: FlashingCellDefinition;
}
export declare const FlashingCellStyle: React.FunctionComponent<FlashingCellStyleProps>;
