import { FunctionComponent, HTMLProps, ReactNode } from 'react';
import { OneOf } from '../../typeUtils';
import { NavVariants } from './NavVariants';
export interface NavListProps extends HTMLProps {
variant?: OneOf;
id?: string;
srText?: string;
children?: ReactNode;
className?: string;
innerClassName?: string;
title?: string;
isExpandable?: boolean;
isExpanded?: boolean;
isActive?: boolean;
}
declare const NavList: FunctionComponent;
export default NavList;