import { FC } from 'react'; import PropTypes from 'prop-types'; import './action-bar.global.css'; declare const propTypes: { /** The Save button props (label + Styleguide Button props) */ save: PropTypes.Requireable>; /** The Cancel button props (label + Styleguide Button props) */ cancel: PropTypes.Requireable>; }; declare const FloatingActionBar: FC>; export default FloatingActionBar;