import React, { ButtonHTMLAttributes } from 'react'; export type ButtonProps = ButtonHTMLAttributes & { icon?: JSX.Element; text?: string; style?: any; }; declare const Button: React.ForwardRefExoticComponent & { icon?: JSX.Element | undefined; text?: string | undefined; style?: any; } & React.RefAttributes>; export default Button;