export interface ChunkProgressBarProps {
  dataTestId?: string;
  ariaLabel?: string;
  chunkCount?: number;
  className?: string;
  dir?: string;
  disabled?: boolean;
  emptyClassName?: string;
  emptyStyle?: React.CSSProperties;
  max?: number;
  min?: number;
  orientation?: "horizontal" | "vertical";
  progressClassName?: string;
  progressStyle?: React.CSSProperties;
  reverse?: boolean;
  style?: React.CSSProperties;
  tabIndex?: number;
  value?: number | null;
}
