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;