import { Type } from "./Utils.js"; export default interface Extendable { as(type: Type): C; asOptional(type: Type): C | null; has(type: Type): boolean; /** * @throws MissingComponentError */ require(type: Type): void; } export declare class MissingComponentError extends Error { constructor(type: Type); }