UNPKG

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