export declare class SallaSkeleton {
  /**
 *  Set the shape type of the skeleton is it circle or normal
 */
  type: 'circle' | 'normal';
  /**
 *  Set the skeleton width
 */
  width: string;
  /**
 *  Set the skeleton height
 */
  height: string;
  render(): any;
}
