1 | import * as React from "react";
|
2 | import { AbstractPureComponent, Alignment } from "../../common";
|
3 | import { HTMLDivProps, Props } from "../../common/props";
|
4 | export interface NavbarGroupProps extends Props, HTMLDivProps {
|
5 | /**
|
6 | * The side of the navbar on which the group should appear.
|
7 | * The `Alignment` enum provides constants for these values.
|
8 | *
|
9 | * @default Alignment.LEFT
|
10 | */
|
11 | align?: Alignment;
|
12 | children?: React.ReactNode;
|
13 | }
|
14 | export declare class NavbarGroup extends AbstractPureComponent<NavbarGroupProps> {
|
15 | static displayName: string;
|
16 | static defaultProps: NavbarGroupProps;
|
17 | render(): JSX.Element;
|
18 | }
|