import * as React from "react"; import { ButtonProps } from "../Button"; export interface ButtonMinimalProps extends ButtonProps { color?: string; active?: boolean; } declare const ButtonMinimal: React.SFC; export default ButtonMinimal;