import { ButtonBaseTypeMap } from "../ButtonBase"; import { OverrideProps } from "../OverridableComponent"; import { Theme } from "../styles"; import { CardActionAreaClasses } from "./cardActionAreaClasses"; import { SxProps } from "@suid/system"; import { ElementType } from "@suid/types"; export type CardActionAreaTypeMap

= { name: "MuiCardActionArea"; selfProps: { /** * Override or extend the styles applied to the component. */ classes?: Partial; focusVisibleClassName?: string; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; }; props: P & Omit & CardActionAreaTypeMap["selfProps"]; defaultComponent: D; }; export type CardActionAreaProps = OverrideProps, D>; export default CardActionAreaProps; //# sourceMappingURL=CardActionAreaProps.d.ts.map