import * as React from 'react'; export interface OverflowMenuProps extends React.HTMLProps { /** Any elements that can be rendered in the menu */ children?: any; /** Additional classes added to the OverflowMenu. */ className?: string; /** Indicates breakpoint at which to switch between horizontal menu and vertical dropdown */ breakpoint: 'sm' | 'md' | 'lg' | 'xl' | '2xl'; /** A container reference to base the specified breakpoint on instead of the viewport width. */ breakpointReference?: HTMLElement | (() => HTMLElement) | React.RefObject; } export interface OverflowMenuState extends React.HTMLProps { isBelowBreakpoint: boolean; breakpointRef: HTMLElement; } declare class OverflowMenu extends React.Component { static displayName: string; constructor(props: OverflowMenuProps); observer: any; getBreakpointRef(): any; componentDidMount(): void; componentDidUpdate(prevProps: Readonly, prevState: Readonly): void; componentWillUnmount(): void; handleResize: () => void; handleResizeWithDelay: (...args: any[]) => void; render(): React.JSX.Element; } export { OverflowMenu }; //# sourceMappingURL=OverflowMenu.d.ts.map