import React from 'react'; interface FloatingActionButtonProps extends React.ButtonHTMLAttributes { icon: React.ElementType; label: string; position?: { bottom?: string; right?: string; top?: string; left?: string; }; size?: 'small' | 'medium' | 'large'; } export declare const FloatingActionButton: React.FC; export {};