UNPKG

467 BTypeScriptView Raw
1/// <reference types="react" />
2import { AbstractPureComponent2 } from "../../common";
3import { HTMLDivProps, Props } from "../../common/props";
4export declare type NavbarDividerProps = INavbarDividerProps;
5/** @deprecated use NavbarDividerProps */
6export interface INavbarDividerProps extends Props, HTMLDivProps {
7}
8export declare class NavbarDivider extends AbstractPureComponent2<NavbarDividerProps> {
9 static displayName: string;
10 render(): JSX.Element;
11}