import React from 'react'; import type { ButtonProps } from '@mui/material/Button'; export interface IButtonProps extends ButtonProps { variant?: 'outlined' | 'contained' | 'text'; color?: 'primary' | 'secondary' | 'error' | 'warning' | 'success'; text?: string; children?: React.ReactNode; inputSize?: 'small' | 'medium'; size?: 'small' | 'medium' | 'large'; inputAlert?: boolean; fromTextbox?: boolean; inputReq?: boolean; inputLabel?: boolean; [key: string]: any; } declare const Button: React.ForwardRefExoticComponent & React.RefAttributes>; export default Button;