import { ReactNode } from 'react'; import { GrafanaTheme2 } from '@grafana/data'; export interface Props { children?: ReactNode; title: string; } export declare function SidebarPaneHeader({ children, title }: Props): import("react/jsx-runtime").JSX.Element; export declare const getStyles: (theme: GrafanaTheme2) => { wrapper: string; flexGrow: string; };