import { PanelGroupId } from '@perses-dev/core'; import { ReactElement } from 'react'; export interface GridTitleProps { panelGroupId: PanelGroupId; title: string; collapse?: { isOpen: boolean; onToggleOpen: () => void; }; } /** * Renders the title for a Grid section, optionally also supporting expanding * and collapsing */ export declare function GridTitle(props: GridTitleProps): ReactElement; //# sourceMappingURL=GridTitle.d.ts.map