import * as React from 'react'; declare type Size = 'small'; declare type Props = { children: React.ReactNode; icon?: React.ReactNode; size?: Size; loading?: boolean; disabled?: boolean; type?: 'button' | 'submit' | 'reset'; onClick?: (event: React.MouseEvent) => void; hasShadow?: boolean; testId?: string; background?: string; color?: string; border?: string; fullWidth?: boolean; }; declare const Button: (props: Props) => JSX.Element; export default Button;