import React from 'react'; export interface ButtonProps extends React.HTMLAttributes { className?: string; primary?: boolean; secondary?: boolean; thirdary?: boolean; neutral?: boolean; error?: boolean; red?: boolean; danger?: boolean; hover?: { [themeType: string]: string; }; small?: boolean; medium?: boolean; large?: boolean; xlarge?: boolean; size?: Size; disabled?: boolean; outlined?: boolean; textColor?: string; background?: string; overwriteClassName?: boolean; overWrittenClassNames?: string; centerOnSmall?: boolean; type?: 'button' | 'submit'; } declare type Size = 'small' | 'medium' | 'large'; declare const Button: React.ForwardRefExoticComponent>; export default Button;