import React from "react";
export interface SpeedDialAction {
    icon: React.ReactNode;
    label: string;
    onClick: () => void;
}
interface ExpandableSpeedDialProps {
    /** The actions to display when expanded */
    actions: SpeedDialAction[];
    /** The direction to expand the speed dial */
    direction?: "up" | "down" | "left" | "right";
    /** Optional classname for the container */
    className?: string;
    /** Size of the main button */
    size?: "sm" | "md" | "lg";
}
export declare function ExpandableSpeedDial({ actions, direction, className, size, }: ExpandableSpeedDialProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=expandable-speed-dial.d.ts.map