/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BaseEvent } from '@progress/kendo-react-common'; import { FloatingActionButtonItemProps } from '../../index.js'; import { FloatingActionButtonHandle } from '../interfaces/FloatingActionButtonHandle'; /** * Represents the return type of the FloatingActionButton events. */ export interface FloatingActionButtonEvent extends BaseEvent { } /** * Represents the return type of the FloatingActionButtonItemEvent. */ export interface FloatingActionButtonItemEvent extends BaseEvent { /** * The clicked item props. */ itemProps?: FloatingActionButtonItemProps; /** * The zero-based index of the clicked item. */ itemIndex: number; }