import { type FC, type HTMLAttributes, type ReactNode, type Ref } from 'react';
interface NavPanelGroupContextValue {
expanded: boolean;
toggle: () => void;
contentId: string;
}
export declare function useNavPanelGroupContext(): NavPanelGroupContextValue;
export interface NavPanelGroupProps extends Omit, 'children'> {
ref?: Ref;
expanded?: boolean;
defaultExpanded?: boolean;
onExpandedChange?: (expanded: boolean) => void;
children: ReactNode;
}
export declare const NavPanelGroup: FC;
export {};