import { type ICloseable } from '../../../Behaviors/Closeable'; import { type IOpenable } from '../../../Behaviors/Openable'; import { ISlottable } from '../../../Behaviors/Slottable'; import { FabGroupDirection } from '../../../Types/FabGroupDirection'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IFloatingActionButtonGroupElementProps } from './IFloatingActionButtonGroupElementProps'; declare const FloatingActionButtonGroupElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => IOpenable & import("../../../Behaviors/Openable").IOpenableEvents) & (abstract new (...args: Array) => import("../../../Behaviors/Closeable").ICloseableProps & import("../../../Behaviors/Closeable").ICloseableEvents & ICloseable) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Labelable").ILabelableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Iconable").IIconableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Floating Action Button Group - A group of Floating Action Buttons that trigger primary actions in an application. * * @description * The Floating Action Button Group is a UI component that organizes multiple Floating Action Buttons (FABs) into a * cohesive group. This component is designed to provide users with multiple primary actions in a compact and accessible * format. Each button within the group can trigger a different action, making it ideal for applications that require * multiple high-priority actions to be easily accessible. * * @name Floating Action Button Group * @element mosaik-fab-group * @category Buttons * * @fires opened {OpenedEvent} - Called when the FAB group is opened. * @fires closed {ClosedEvent} - Called when the FAB group is closed. * * @slot trigger - The trigger slot for initiating the FAB group. * @slot - The default slot for FABs. * @slot overlay - The overlay slot (useful for badges or additional visual elements). * * @csspart fab - The FAB part within the group. * @csspart menu - The menu part of the FAB group. * * @cssprop {String} --fab-group-font-family - The font family of the FAB group. * @cssprop {String} --fab-group-font-size - The font size of the FAB group. * @cssprop {String} --fab-group-font-line-height - The font line height of the FAB group. * @cssprop {String} --fab-group-font-weight - The font weight of the FAB group. * @cssprop {String} --fab-group-font-letter-spacing - The font letter spacing of the FAB group. * @cssprop {String} --fab-group-font-text-decoration - The font text decoration of the FAB group. * @cssprop {String} --fab-group-font-text-transform - The font text transform of the FAB group. * @cssprop {String} --fab-group-transition-duration - The transition duration of the FAB group. * @cssprop {String} --fab-group-transition-mode - The transition mode of the FAB group. * @cssprop {String} --fab-group-transition-property - The transition property of the FAB group. * * @dependency {FloatingActionButtonElement} mosaik-fab - The Floating Action Button component. * * @example * Basic FAB group with trigger and action buttons: * ```html * * * * * * * ``` * * @example * FAB group that opens upward: * ```html * * * * * * ``` * * @public */ export declare class FloatingActionButtonGroupElement extends FloatingActionButtonGroupElement_base implements IFloatingActionButtonGroupElementProps, IOpenable, ICloseable, ISlottable { private readonly _provider; private readonly _clickOutsideController; private _isOpen; private _direction; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `isOpen` property that allows you to show or hide the `FloatingActionButtonGroupElement` menu. * * @public * @attr is-open */ get isOpen(): boolean; set isOpen(value: boolean); /** * Gets or sets the `direction` property. * * @public * @attr direction */ get direction(): FabGroupDirection; set direction(value: FabGroupDirection); /** * @public * @override */ onSlotChanges(): void; /** * Opens the FAB group. * * @public * @override */ open(): Promise; /** * Close the FAB group. * * @public * @override */ close(): Promise; /** * Toggles the FAB group. * * @public */ toggle(): Promise; /** * @private */ private onClickedOutside; } /** * @public */ export declare namespace FloatingActionButtonGroupElement { type Props = IFloatingActionButtonGroupElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-fab-group': FloatingActionButtonGroupElement; } } export {}; //# sourceMappingURL=FloatingActionButtonGroupElement.d.ts.map