import { FC } from 'react'; import { InputBaseProps as MuiInputBaseProps, SxProps } from '@mui/material'; interface InputBaseProps extends MuiInputBaseProps { sx?: SxProps; className?: string; } export declare const InputBase: FC; export {};