import { HTMLAttributes } from 'react'; interface IFloatingButtonProps extends HTMLAttributes { color?: string; type?: 'submit' | 'button' | 'reset'; disabled?: boolean; inProgress?: boolean; disabledColor?: string; } declare const FloatingButton: ({ color, disabled, disabledColor, inProgress, children, ...props }: IFloatingButtonProps) => JSX.Element; export default FloatingButton;