import type { Component } from "./component"; export declare const enum STATUS { NEW = 0, MOUNTED = 1, CANCELLED = 2, DESTROYED = 3 } declare type STATUS_DESCR = "new" | "mounted" | "cancelled" | "destroyed"; export declare function status(component: Component): STATUS_DESCR; export {};