import { InputBaseProps } from '@mui/material'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export type RoundInputProps = InputBaseProps & { min?: number; max?: number; }; export declare const RoundInput: ForwardRefExoticComponent & RefAttributes>;