UNPKG

@grafana/ui

Version:

Grafana Components Library

10 lines (9 loc) 263 B
import { FunctionComponent } from 'react'; interface Props { title?: string; onClose?: () => void; children: JSX.Element | JSX.Element[] | boolean; onAdd?: () => void; } export declare const PanelOptionsGroup: FunctionComponent<Props>; export {};