import { default as React } from 'react'; export type ButtonSize = 'small' | 'normal' | 'big'; export interface ButtonProps extends React.ButtonHTMLAttributes { onClick?: (ev: any) => void; color?: 'primaryBlue' | 'primaryRed' | 'secondaryBlue' | 'secondaryRed' | 'utility'; disabled?: boolean; height?: '24' | '36' | '40'; width?: '100' | '120' | '140' | '176' | '100%'; lineHeight?: 'xs' | 'sm'; hasOutline?: boolean; } export declare const Button: React.ForwardRefExoticComponent>; export default Button; //# sourceMappingURL=button.d.ts.map