import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { CreateSlotsAndSlotProps, SlotCommonProps, SlotProps } from '../../types/slot'; export interface CardActionsSlots { /** * The component that renders the root slot. * @default 'div' */ root?: React.ElementType; } export type CardActionsSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface CardActionsTypeMap

{ props: P & CardActionsSlotsAndSlotProps; defaultComponent: D; } export type CardActionsProps = OverrideProps, D>; export interface CardActionsOwnerState extends CardActionsProps { orientation: 'vertical' | 'horizontal'; }