import { ButtonHTMLAttributes } from "react";
export interface IProps extends ButtonHTMLAttributes {
hide?: boolean;
}
export default function Fab({ hide, type, // Formik gets grumpy if you don't specify this
...rest }: IProps): import("react").ReactPortal | undefined;