import React from 'react'; import { SideNavGroupProps } from './SideNavGroup.types'; /** * # SideNavGroup * * ``` Back to Home * ``` * * @param props.className Class name that will be applied to the root-level element. * @param props.header Content that will be rendered as the component's header * If a string is provided, it will be rendered with default styling as a header tag. * @param props.children Class name that will be applied to the component's header. * @param props.collapsible Determines whether or not the Group can be collapsed. @defaultValue false * @param props.initialCollapsed Determines whether or not the Group is open by default. @defaultValue true */ declare function SideNavGroup({ header, children, collapsible, initialCollapsed, glyph, className, hasActiveItem, indentLevel, ...rest }: SideNavGroupProps): React.JSX.Element; declare namespace SideNavGroup { var displayName: string; } export default SideNavGroup; //# sourceMappingURL=SideNavGroup.d.ts.map