import * as React from "react"; export interface ButtonBasicProps { type?: "primary" | "secondary" | "tertiary" | "onlyText" | "custom-color"; size?: "extrasmall" | "small" | "medium" | "large"; withIcon?: boolean; submitButton?: boolean; grow?: boolean; color?: string; disabled?: boolean; label: string; active?: boolean; onClick?: React.MouseEventHandler; } declare const Button: ({ label, onClick, color, disabled, submitButton, active, type, withIcon, size, grow, }: ButtonBasicProps) => React.ReactElement; export default Button;