import { Colors, Sizes, Variants } from "../../styles"; interface Props { color: Colors; size: Sizes; variant: Variants; round?: boolean; fullWidth?: boolean; } declare const StyledButton: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, Props, never>; export default StyledButton;