import React from 'react'; interface Props { /** * The hex background color of the button. */ backgroundColor?: string; /** * A valid JSX set of elements. */ children: React.ReactNode; /** * The callback when the button is clicked. */ clickCb?: () => void; /** * TThe callback function when the mouse enters the button. */ enterCb?: () => void; /** * Toggle to show the content inside the button. */ fabOpen: boolean; /** * The callback function when the mouse leaves the button. */ leaveCb?: () => void; /** * The color of the text of the button. */ textColor?: string; /** * The classes applied to the button itself. */ theme?: string; /** * The text shown next to the main button. */ title?: string; } declare const Fab: ({ backgroundColor, children, clickCb, enterCb, fabOpen, leaveCb, textColor, theme, title }: Props) => JSX.Element; export default Fab;