import { ButtonProps } from '../../app/types/type'; interface Props extends ButtonProps { button?: 'normal' | 'beat' | 'slideDown' | 'squares' | 'ripple'; } declare const Button: ({ backgroundColor, borderRadius, children, hasInitialAnimation, disabled, hasSpinner, iconSpinner, isLoading, size, style, textTransform, type, button, onClick, }: Props) => import("react/jsx-runtime").JSX.Element | undefined; export default Button;