import type { ValuesOf } from '../../Types/ValuesOf'; /** * `FabGroupDirection` - The `FabGroupDirection` object is used to describe the different types of floating action button group directions. * * @public */ export declare const FabGroupDirection: { /** * `top` - The top direction. */ readonly Top: "top"; /** * `bottom` - The bottom direction. * @default */ readonly Bottom: "bottom"; /** * `left` - The left direction. */ readonly Left: "left"; /** * `outlined` - The right direction. */ readonly Right: "right"; }; /** * @public */ export type FabGroupDirection = ValuesOf; //# sourceMappingURL=FabGroupDirection.d.ts.map