export declare const COMPONENT_STATE_INITIALIZE = 0; export declare const COMPONENT_STATE_RENDERED = 1; export declare const COMPONENT_STATE_WILLDESTROY = 2; export declare const COMPONENT_STATE_DESTROIED = 3; export type ComponentState = 0 | 1 | 2 | 3; export declare const CONTEXT_STATE_UNTOUCH = 0; export declare const CONTEXT_STATE_TOUCHED = 1; export declare const CONTEXT_STATE_UNTOUCH_FREEZED = 2; export declare const CONTEXT_STATE_TOUCHED_FREEZED = 3; export type ContextState = 0 | 1 | 2 | 3; export type Context = Record; export declare const DEFAULT_SLOT_NAME = "slot:default"; export declare const __: unique symbol; export declare const ROOT_NODES: unique symbol; export declare const NON_ROOT_COMPONENT_NODES: unique symbol; export declare const REFS: unique symbol; export declare const CONTEXT: unique symbol; export declare const ONMOUNT: unique symbol; export declare const UNMOUNT_FNS: unique symbol; export declare const STATE: unique symbol; export declare const CONTEXT_STATE: unique symbol;