import { TemporaryNavigationProps } from './types'; export interface ISubNavProps { brandUrl?: string; open: boolean; title?: string; navigation?: TemporaryNavigationProps; onClose?: any; footer?: any; LinkElement?: any; linkElementProps?: any; } declare const SubNav: ({ open, title, footer, navigation, onClose, brandUrl, LinkElement, linkElementProps }: ISubNavProps) => import("react/jsx-runtime").JSX.Element; export default SubNav;