@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 584 B
TypeScript
import * as React from 'react';
import { AlertDefinition } from '../../../AdaptableState/AlertState';
import { AdaptableApi } from '../../../types';
import { AlertType } from '../Utilities/getAlertType';
export declare const renderAlertBehaviourSummary: (alert: AlertDefinition, api: AdaptableApi, allowWrap?: boolean) => React.JSX.Element;
type AlertBehaviourWizardSectionProps = {
onChange: (data: AlertDefinition) => void;
alertType: AlertType;
};
export declare const AlertBehaviourWizardSection: (props: AlertBehaviourWizardSectionProps) => React.JSX.Element;
export {};