export type SkeletonAnimation = {
  type: "wave" | "pulse";
};

export interface SkeletonProps {
  dataTestId?: string;
  animation?: boolean | SkeletonAnimation;
  className?: string;
  shape?: "circle" | "text" | "rectangle";
  style?: React.CSSProperties;
}
