import * as React from 'react'; import { AdditionalProps } from 'react-onclickoutside'; import { InteractiveListItem, InteractiveListProps } from '../InteractiveList'; import { FlyoutProps } from '../Flyout'; export interface OverflowMenuProps { /** * The items to display in the menu. */ items: Array; /** * The button to display for opening the menu. */ button?: React.ReactNode; /** * The properties to pass on to the flyout. */ flyoutProps?: Partial; /** * The properties to pass on the interactive list. */ listProps?: Partial; } export interface OverflowMenuState { open: boolean; items: Array; } export declare const OverflowMenu: React.ComponentClass;