import * as React from 'react'; import { CSSModule } from './index'; export interface NavbarProps extends React.HTMLAttributes { [key: string]: any; light?: boolean; dark?: boolean; full?: boolean; fixed?: string; sticky?: string; color?: string; tag?: React.ElementType; cssModule?: CSSModule; expand?: boolean | string; } declare class Navbar extends React.Component {} export default Navbar;