/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; declare class DropDownOverflow extends Component { constructor(props: any); componentDidMount(): void; render(): JSX.Element; renderVisibleItems(): React.ReactNode; renderDropdownButton(): any; renderGhost(): JSX.Element | null; getRootSize(): any; updateOverflowItems(): void; handleResize({ width, height }: { width: any; height: any; }): void; getSizeName(): string; getChildrenArray(): (React.ReactChild | React.ReactFragment | React.ReactPortal)[]; } export default DropDownOverflow;