UNPKG

715 BTypeScriptView Raw
1/// <reference types="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}
15export declare class NavbarGroup extends AbstractPureComponent2<NavbarGroupProps> {
16 static displayName: string;
17 static defaultProps: NavbarGroupProps;
18 render(): JSX.Element;
19}