import React, { FunctionComponent } from 'react'; import type { InputBaseProps } from '@mui/material/InputBase'; export interface ITextboxProps extends InputBaseProps { label?: string; size: 'small' | 'medium'; alert?: boolean; id?: string; children?: React.ReactElement; actionProps?: any; ActionComponent?: FunctionComponent; [key: string]: any; } declare const Textbox: React.ForwardRefExoticComponent & React.RefAttributes>; export default Textbox;