/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Represents the return type of the FloatingActionButton events. */ export interface FloatingActionButtonEvent { /** * The native browser event. */ event: Event | FocusEvent; } /** * Represents the return type of the FloatingActionButtonItemEvent. */ export interface FloatingActionButtonItemEvent { /** * The clicked item props. */ itemProps?: any; /** * The zero-based index of the clicked item. */ itemIndex: number; }