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

{ name: "MuiActions"; defaultPropNames: "disableSpacing"; selfProps: { /** * The content of the component. */ children?: JSXElement; /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; /** * If `true`, the actions do not have additional margin. * @default false */ disableSpacing?: boolean; }; props: P & CardActionsTypeMap["selfProps"]; defaultComponent: D; } export type CardActionsProps = OverrideProps, D>; export default CardActionsProps; //# sourceMappingURL=CardActionsProps.d.ts.map