export interface CardActionsProps {
  dataTestId?: string;
  children?: React.ReactNode;
  className?: string;
  layout?: "start" | "center" | "end" | "stretched";
  orientation?: "horizontal" | "vertical";
  style?: React.CSSProperties;
}
