UNPKG

@adaptabletools/adaptable

Version:

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

16 lines (15 loc) 498 B
import * as React from 'react'; import { ReactNode } from 'react'; import { AccessLevel } from '../../AdaptableState/Common/Entitlement'; export type DashboardToolbarProps = { className?: string; title: string; tooltip?: string; onClose?: () => void; onConfigure?: () => void; children: ReactNode; showConfigure: boolean; showClose: boolean; accessLevel: AccessLevel; }; export declare function DashboardToolbar(props: DashboardToolbarProps): React.JSX.Element;