import { Component } from "../../core/Component"; /** * An empty component that tags an entity as active for the purpose of idle * checks. */ export declare class ActiveComponent extends Component { readonly tag: string | undefined; initialize(tag?: string): void; }