UNPKG

646 BTypeScriptView Raw
1import * as React from "react";
2import { AbstractPureComponent, Alignment } from "../../common";
3import { HTMLDivProps, Props } from "../../common/props";
4export 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}
14export declare class NavbarGroup extends AbstractPureComponent<NavbarGroupProps> {
15 static displayName: string;
16 static defaultProps: NavbarGroupProps;
17 render(): JSX.Element;
18}