mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
16 lines
458 B
TypeScript
16 lines
458 B
TypeScript
|
import React from 'react';
|
||
|
import { BsPrefixRefForwardingComponent } from './helpers';
|
||
|
interface AbstractNavProps {
|
||
|
activeKey?: any;
|
||
|
as?: React.ElementType;
|
||
|
getControlledId?: any;
|
||
|
getControllerId?: any;
|
||
|
onKeyDown?: any;
|
||
|
onSelect?: any;
|
||
|
parentOnSelect?: any;
|
||
|
role?: string;
|
||
|
}
|
||
|
declare type AbstractNav = BsPrefixRefForwardingComponent<'ul', AbstractNavProps>;
|
||
|
declare const AbstractNav: AbstractNav;
|
||
|
export default AbstractNav;
|