import { ComponentPropsWithoutRef } from 'react'; export interface SideNavActionListGroupHeadingProps extends ComponentPropsWithoutRef<'div'> { /** * The content of the SideNav.ActionList.Group.Heading * @default null */ children: React.ReactNode; /** * Add content after the text */ contentAfter?: React.ReactNode; } export declare const SideNavActionListGroupHeading: { ({ children, contentAfter, className: _className, }: SideNavActionListGroupHeadingProps): import("react/jsx-runtime").JSX.Element; displayName: string; };