/** @module @citydna/common/Button */ import { FC } from "react"; import { ButtonProps as MuiButtonProps } from "@material-ui/core/Button"; export interface ButtonProps extends Omit { /** Toggle a loading indicator & disable button */ loading?: boolean; /** Toggle a check mark & disable button to indicate something is complete. */ done?: boolean; /** Use 'small' for a tiny button. */ size?: "large" | "small"; } /** * A Button that extends [`@material-ui/core/Button`](https://material-ui.com/api/button/), adding loading and done states. */ export declare const Button: FC; //# sourceMappingURL=index.d.ts.map