@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
11 lines (10 loc) • 606 B
TypeScript
import * as React from 'react';
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 declare const renderFlashingAlertStyleSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element;
export {};