1 | import { NavProps as BaseNavProps } from '@restart/ui/Nav';
|
2 | import { EventKey } from '@restart/ui/types';
|
3 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
4 | export interface NavProps extends BsPrefixProps, BaseNavProps {
|
5 | navbarBsPrefix?: string;
|
6 | cardHeaderBsPrefix?: string;
|
7 | variant?: 'tabs' | 'pills' | 'underline' | string;
|
8 | defaultActiveKey?: EventKey;
|
9 | fill?: boolean;
|
10 | justify?: boolean;
|
11 | navbar?: boolean;
|
12 | navbarScroll?: boolean;
|
13 | }
|
14 | declare const _default: BsPrefixRefForwardingComponent<"div", NavProps> & {
|
15 | Item: BsPrefixRefForwardingComponent<"div", import("./NavItem").NavItemProps>;
|
16 | Link: BsPrefixRefForwardingComponent<"a", import("./NavLink").NavLinkProps>;
|
17 | };
|
18 | export default _default;
|