import * as React from 'react'; export type ButtonProps = { type?: 'primary' | 'secondary' | 'link'; size?: 'large' | 'medium' | 'small'; colorScheme?: 'gradient' | 'standard' | 'neutral'; label?: string; leftItem?: React.ReactNode; rightItem?: React.ReactNode; onClick?: () => void; href?: string; className?: string; disabled?: boolean; loading?: boolean; } & React.AnchorHTMLAttributes; declare const Button: React.VFC; export default Button;