import React from 'react'; interface SpeedDialAction { icon: React.ElementType; label: string; onClick: () => void; } interface SpeedDialProps { actions: SpeedDialAction[]; position?: { bottom?: string; right?: string; top?: string; left?: string; }; } export declare const SpeedDial: React.FC; export {};