/** * @license * Copyright (c) Peculiar Ventures, LLC. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { IButtonProps } from '../button'; export interface IButtonMenuGroupOptions extends IButtonProps { text: string | string[]; } export interface IButtonMenuGroup { title: string | string[]; options: IButtonMenuGroupOptions[]; } export declare class ButtonMenu { groups: IButtonMenuGroup[]; open: boolean; handleClick: () => void; render(): any; }