UNPKG

@adaptabletools/adaptable

Version:

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

11 lines (10 loc) 333 B
import * as React from 'react'; export interface PanelFooterProps { onCancel: () => void; onAccept: () => void; cancelDisabled?: boolean; acceptDisabled?: boolean; acceptText?: React.ReactElement; cancelText?: React.ReactElement; } export declare const PanelFooter: React.FunctionComponent<PanelFooterProps>;