import { Theme } from "../styles"; import { FormGroupClasses } from "./formGroupClasses"; import { SxProps } from "@suid/system"; import { ElementType, OverrideProps } from "@suid/types"; import { JSXElement } from "solid-js"; export interface FormGroupTypeMap

{ name: "MuiFormGroup"; defaultPropNames: "row"; selfProps: { /** * The content of the component. */ children?: JSXElement; /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * Display group of elements in a compact row. * @default false */ row?: boolean; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; }; props: P & FormGroupTypeMap["selfProps"]; defaultComponent: D; } export type FormGroupProps = OverrideProps, D>; export default FormGroupProps; //# sourceMappingURL=FormGroupProps.d.ts.map