import React from 'react'; import { InjectedProps } from '@material/react-ripple'; export interface FabProps extends InjectedProps, React.ButtonHTMLAttributes { exited?: boolean; mini?: boolean; icon?: React.ReactElement; textLabel?: string; className?: string; initRipple?: React.Ref; unbounded?: boolean; } export declare const Fab: React.FunctionComponent>; declare const _default: React.ComponentType & import("../ripple").RippledComponentProps>; export default _default;