import { type ReactNode } from 'react';
export interface Props {
    children?: ReactNode;
    title: string;
}
export declare function SidebarPaneHeader({ children, title }: Props): import("react/jsx-runtime").JSX.Element;
