/** * Package-internal constructor tag to signal that the layer constructor is being called from the layer factory. * * @internal */ export declare const INTERNAL_CONSTRUCTOR_TAG: unique symbol; export type InternalConstructorTag = typeof INTERNAL_CONSTRUCTOR_TAG; export declare function assertInternalConstructor(tag: InternalConstructorTag): void;