import Component from '../core/Component.js'; /** * Component that holds the width and height of an entity. */ export default class BoundsComponent extends Component { /** Width in pixels. */ width: number; /** Height in pixels. */ height: number; constructor(width?: number, height?: number); }