UNPKG

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