mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
8 lines
394 B
TypeScript
8 lines
394 B
TypeScript
import 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<unknown>>;
|
|
export default NavbarCollapse;
|