import React from 'react'; import { ButtonTypes } from '../utils/prop-types'; interface Props { href: React.AnchorHTMLAttributes['href']; type?: ButtonTypes; ghost?: boolean; loading?: boolean; shadow?: boolean; auto?: boolean; effect?: boolean; disabled?: boolean; icon?: React.ReactNode; iconRight?: React.ReactNode; onClick?: React.MouseEventHandler; className?: string; } type NativeAttrs = Omit, keyof Props>; export type ButtonProps = Props & NativeAttrs; declare const Button: React.ForwardRefExoticComponent & import("../use-scale").ScaleProps, "ref"> & React.RefAttributes>; export default Button;