import { InputBaseProps } from "../InputBase"; import { Theme } from "../styles"; import { InputClasses } from "./inputClasses"; import SxProps from "@suid/system/sxProps"; import { ElementType } from "@suid/types"; export interface InputTypeMap

{ name: "MuiInput"; selfProps: { /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * If `true`, the `input` will not have an underline. */ disableUnderline?: boolean; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; }; props: P & InputBaseProps & InputTypeMap["selfProps"]; defaultComponent: D; } export type InputProps = InputTypeMap["props"]; export default InputProps; //# sourceMappingURL=InputProps.d.ts.map