/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the horizontal and vertical offset positions of the FloatingActionButton
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#offset)).
 *
 * @example
 * ```typescript
 * const offset: FabOffset = { x: '10px', y: '20px' };
 * ```
 */
export interface FabOffset {
    /**
     * Defines the horizontal offset of the FloatingActionButton.
     */
    x: string;
    /**
     * Defines the vertical offset of the FloatingActionButton.
     */
    y: string;
}
