/** * An attribute name used to enable debugging for KnytElement. * * @remarks * * When this attribute is present on a KnytElement instance, * the instance's `debug` property is set to `true`, enabling debug mode. * This can be useful for troubleshooting and development purposes. * * A `data-` prefix is used for consistency with other Knyt specific * attributes. To clarify, the custom elements `observedAttributes` API * doesn't care about the `data-` prefix, and the attribute can be * observed and handled like any other attribute. * * @internal scope: workspace * * @alpha This API is subject to change without a BREAKING CHANGE notice. */ export declare const KNYT_DEBUG_DATA_ATTR = "data-knytdebug"; /** * A unique symbol used to mark KnytElement definitions. * * @internal scope: package */ export declare const __isKnytElementDefinition: unique symbol; /** * A unique symbol used to mark composed `KnytElement` constructors * (as returned by `defineKnytElement`). * * @internal scope: package */ export declare const __isKnytElementComposed: unique symbol; /** * A symbol to identify the lifecycle static method * on a composed `KnytElement` constructor. * * @internal scope: workspace */ export declare const __knytElementComposedLifecycle: unique symbol; /** * A symbol to identify the renderer method * on a `KnytElement` instance. * * @internal scope: workspace */ export declare const __knytElementComposedRenderer: unique symbol; /** * A symbol to identify the hot-update static method * on a composed `KnytElement` constructor. * * @internal scope: workspace */ export declare const __knytElementComposedHotUpdate: unique symbol; //# sourceMappingURL=constants.d.ts.map