1 | import * as React from 'react';
|
2 | import type { SubMenuType } from '../interface';
|
3 | export interface SubMenuProps extends Omit<SubMenuType, 'key' | 'children' | 'label'> {
|
4 | title?: React.ReactNode;
|
5 | children?: React.ReactNode;
|
6 | /** @private Used for rest popup. Do not use in your prod */
|
7 | internalPopupClose?: boolean;
|
8 | /** @private Internal filled key. Do not set it directly */
|
9 | eventKey?: string;
|
10 | /** @private Do not use. Private warning empty usage */
|
11 | warnKey?: boolean;
|
12 | }
|
13 | declare const SubMenu: React.ForwardRefExoticComponent<Omit<SubMenuProps, "ref"> & React.RefAttributes<HTMLLIElement>>;
|
14 | export default SubMenu;
|