import { InputBaseProps } from "../InputBase"; import { ElementType, OverrideProps } from "@suid/types"; import { JSXElement } from "solid-js"; export interface NotchedOutlineTypeMap

{ name: "MuiNotchedOutline"; selfProps: { disabled?: boolean; error?: boolean; focused?: boolean; label?: JSXElement; notched: boolean; }; props: P & InputBaseProps & NotchedOutlineTypeMap["selfProps"]; defaultComponent: D; } export type NotchedOutlineClassKey = keyof NonNullable; export type NotchedOutlineProps = OverrideProps, D>; export default NotchedOutlineProps; //# sourceMappingURL=NotchedOutlineProps.d.ts.map