/// import type { PDSIconType, PDSTextType } from '../../../common'; export type FloatingActionButtonProps = { text?: PDSTextType; displayType?: 'icon_only' | 'text_only' | 'icon_text'; size?: 'xlarge' | 'large'; fontWeight?: 'bold' | 'regular'; iconFillType?: 'fill' | 'line'; iconName?: PDSIconType; colorTheme?: 'none' | 'theme1' | 'theme2' | 'theme3'; state?: 'normal' | 'disabled'; onClick?: (e: React.MouseEvent) => void; onMouseDown?: (e: React.MouseEvent) => void; }; declare function FloatingActionButton({ text, displayType, size, fontWeight, iconFillType, iconName, colorTheme, state, onClick, onMouseDown }: FloatingActionButtonProps): JSX.Element; export default FloatingActionButton;