import type { ButtonHTMLAttributes, ComponentType, FC, ReactNode, Ref } from 'react'; import type { SvgIconProps } from '../../icons/SvgIcon'; export interface NavPanelGroupLabelProps extends ButtonHTMLAttributes { ref?: Ref; icon?: ComponentType; children: ReactNode; } export declare const NavPanelGroupLabel: FC;