/// <reference types="react" />
import PropTypes from 'prop-types';
import './FloatingButton.css';
/**
 * Floating Button component for user interaction
 */
export declare const FloatingButton: {
    ({ label, buttonType }: {
        label: any;
        buttonType: any;
    }): JSX.Element;
    propTypes: {
        onClick: PropTypes.Requireable<(...args: any[]) => any>;
    };
    defaultProps: {
        onClick: any;
    };
};
