declare class PuSkeleton {
  /** component class prefix */
  prefix: string;

  /** skeleton count */
  count: number;

  /** animation duration time */
  duration: number;

  /** skeleton width */
  width: number;

  /** skeleton height */
  height: number;

  /** make component look like a circle  */
  circle: boolean;

  /** custom control loading status  */
  loading: any;
}

export default PuSkeleton;
