type SectionHeaderProps = Readonly<{ /** Section title to display */ title: string; /** Additional CSS classes */ className?: string; }>; /** * Renders a section header within a menu. * Non-interactive, purely visual grouping element. * * @internal */ export declare const SectionHeader: ({ title, className }: SectionHeaderProps) => import("react/jsx-runtime").JSX.Element; export {};