import { type ComponentPropsWithoutRef, type PropsWithChildren, type ReactNode } from 'react'; type AbstractProps = PropsWithChildren<{ heading: ReactNode; }>; type ElementProps = Omit, keyof AbstractProps>; export declare const SideMenuGroup: ({ heading, children, className, ...rest }: AbstractProps & ElementProps) => import("react/jsx-runtime").JSX.Element; export {};