UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

21 lines (20 loc) 865 B
import * as React from 'react'; import { AlertDefinition } from '../../../AdaptableState/AlertState'; import { AdaptableApi } from '../../../types'; import { AlertType } from '../Utilities/getAlertType'; import { BoxProps } from '../../../components/Flex'; export declare const renderAlertNotificationSummary: () => React.JSX.Element; interface AlertPreviewProps extends BoxProps { className?: string; style?: React.CSSProperties; 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 {};