import * as React from 'react'; export declare const buttonStyles = "\n display: inline-flex;\n justify-content: center;\n align-items: center;\n padding: 0.5rem 1rem;\n color: white;\n background-color: grey;\n border-color: grey;\n cursor: pointer;\n\n text-align: center;\n height: 54px;\n font-family: 'Source Sans Pro', sans-serif;\n width: 100%;\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n"; export interface ButtonProps { icon?: any; children?: any; text?: string; onClick?: any; /** Whether to use an a tag instead of button */ anchor?: boolean; style?: any; className?: string; } declare const Button: React.SFC; export default Button;