import * as React from 'react'; import { Colors, Sizes, Variants } from "../../styles"; interface Props { color: Colors; size: Sizes; variant: Variants; children?: React.ReactNode; onClick?: () => void; style?: React.CSSProperties; fullWidth?: boolean; disabled?: boolean; round?: boolean; } declare const Button: { (props: Props): JSX.Element; defaultProps: { color: string; size: string; variant: string; }; }; export default Button;