UNPKG

458 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixRefForwardingComponent } from './helpers';
3interface AbstractNavProps {
4 activeKey?: any;
5 as?: React.ElementType;
6 getControlledId?: any;
7 getControllerId?: any;
8 onKeyDown?: any;
9 onSelect?: any;
10 parentOnSelect?: any;
11 role?: string;
12}
13declare type AbstractNav = BsPrefixRefForwardingComponent<'ul', AbstractNavProps>;
14declare const AbstractNav: AbstractNav;
15export default AbstractNav;