import { FunctionComponent, HTMLProps, ReactNode } from 'react'; export interface NavExpandableProps extends HTMLProps { title: string; srText?: string; isExpanded?: boolean; children?: ReactNode; className?: string; groupId?: string | number; isActive?: boolean; id?: string; } declare const NavExpandable: FunctionComponent; export default NavExpandable;