UNPKG

@adaptabletools/adaptable-cjs

Version:

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

14 lines (13 loc) 428 B
import * as React from 'react'; export interface PanelWithButtonProps { buttonClick?: () => void; className?: string; bodyClassName?: string; button?: React.ReactElement<any>; headerText: string; glyphicon?: string; infoLink?: string; infoLinkDisabled?: boolean; scrollable?: boolean; } export declare const PopupPanel: React.FunctionComponent<React.PropsWithChildren<PanelWithButtonProps>>;