import { PaperProps } from "../Paper"; import { Theme } from "../styles"; import { OverrideProps } from "./../OverridableComponent"; import { CardClasses } from "./cardClasses"; import SxProps from "@suid/system/sxProps"; import { DistributiveOmit, ElementType } from "@suid/types"; export interface CardPropsColorOverrides { } export interface CardTypeMap

{ name: "MuiCard"; defaultPropNames: "raised"; selfProps: { /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * If `true`, the card will use raised styling. * @default false */ raised?: boolean; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; }; props: P & DistributiveOmit & CardTypeMap["selfProps"]; defaultComponent: D; } export type CardProps = OverrideProps, D>; export default CardProps; //# sourceMappingURL=CardProps.d.ts.map