@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
19 lines (18 loc) • 790 B
TypeScript
import * as React from 'react';
import { AlertDefinition } from '../../../AdaptableState/AlertState';
import { AdaptableApi } from '../../../types';
import { BoxProps } from 'rebass';
import { AlertType } from '../Utilities/getAlertType';
export declare const renderAlertNotificationSummary: () => React.JSX.Element;
interface AlertPreviewProps extends BoxProps {
api: AdaptableApi;
alertDefinition: AlertDefinition;
focusFirstButton?: boolean;
}
export declare const AlertPreview: React.FunctionComponent<AlertPreviewProps>;
type AlertNotificationWizardSectionProps = {
onChange: (data: AlertDefinition) => void;
alertType: AlertType;
};
export declare const AlertNotificationWizardSection: (props: AlertNotificationWizardSectionProps) => React.JSX.Element;
export {};