import { SVGIcon } from "@progress/kendo-react-common";

export interface PanelBarItemProps {
  dataTestId?: string;
  animation?: boolean;
  children?: React.ReactNode;
  className?: string;
  disabled?: boolean;
  expanded?: boolean;
  focused?: boolean;
  headerClassName?: string;
  icon?: string;
  iconClass?: string;
  id?: string;
  imageUrl?: string;
  selected?: boolean;
  svgIcon?: SVGIcon;
  title?: React.ReactNode;
  uniquePrivateKey?: string;
}
