1 | import React from 'react';
|
2 | export interface DrilldownMenuProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'ref' | 'onSelect'> {
|
3 | /** Items within drilldown sub-menu */
|
4 | children?: React.ReactNode;
|
5 | /** ID of the drilldown sub-menu */
|
6 | id?: string;
|
7 | /** Flag indicating whether the menu is drilled in */
|
8 | isMenuDrilledIn?: boolean;
|
9 | /** Optional callback to get the height of the sub menu */
|
10 | getHeight?: (height: string) => void;
|
11 | }
|
12 | export declare const DrilldownMenu: React.FunctionComponent<DrilldownMenuProps>;
|
13 | //# sourceMappingURL=DrilldownMenu.d.ts.map |
\ | No newline at end of file |