1 | import * as React from 'react';
|
2 | import { CSSModule } from './utils';
|
3 |
|
4 | export interface NavbarProps extends React.HTMLAttributes<HTMLElement> {
|
5 | [key: string]: any;
|
6 | light?: boolean;
|
7 | dark?: boolean;
|
8 | full?: boolean;
|
9 | fixed?: string;
|
10 | sticky?: string;
|
11 | color?: string;
|
12 | container?: boolean | 'fluid' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
13 | tag?: React.ElementType;
|
14 | cssModule?: CSSModule;
|
15 | expand?: boolean | string;
|
16 | }
|
17 |
|
18 | declare class Navbar extends React.Component<NavbarProps> {}
|
19 | export default Navbar;
|