UNPKG

503 BTypeScriptView Raw
1import * as React from "react";
2import { Props } from "../../common/props";
3export declare type MenuDividerProps = IMenuDividerProps;
4/** @deprecated use MenuDividerProps */
5export interface IMenuDividerProps extends Props {
6 /** This component does not support children. */
7 children?: never;
8 /** Optional header title. */
9 title?: React.ReactNode;
10}
11export declare class MenuDivider extends React.Component<MenuDividerProps> {
12 static displayName: string;
13 render(): JSX.Element;
14}