You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
719 B
19 lines
719 B
import { NavProps as BaseNavProps } from '@restart/ui/Nav';
|
|
import { EventKey } from '@restart/ui/types';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface NavProps extends BsPrefixProps, BaseNavProps {
|
|
navbarBsPrefix?: string;
|
|
cardHeaderBsPrefix?: string;
|
|
variant?: 'tabs' | 'pills' | string;
|
|
defaultActiveKey?: EventKey;
|
|
fill?: boolean;
|
|
justify?: boolean;
|
|
navbar?: boolean;
|
|
navbarScroll?: boolean;
|
|
}
|
|
declare const _default: BsPrefixRefForwardingComponent<"div", NavProps> & {
|
|
Item: BsPrefixRefForwardingComponent<"div", unknown>;
|
|
Link: BsPrefixRefForwardingComponent<"a", import("./NavLink").NavLinkProps>;
|
|
};
|
|
export default _default;
|