import React 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; action?: { text: string; onClick?: any; }; } declare const Textbox: React.ForwardRefExoticComponent & React.RefAttributes>; export default Textbox;