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.
8 lines
406 B
8 lines
406 B
import * as React from 'react';
|
|
import { CollapseProps } from './Collapse';
|
|
import { BsPrefixProps } from './helpers';
|
|
export interface NavbarCollapseProps extends Omit<CollapseProps, 'children'>, React.HTMLAttributes<HTMLDivElement>, BsPrefixProps {
|
|
}
|
|
declare const NavbarCollapse: React.ForwardRefExoticComponent<NavbarCollapseProps & React.RefAttributes<HTMLDivElement>>;
|
|
export default NavbarCollapse;
|