/** * Configuration options that are shared between `@arcgis/lumina` and * `@arcgis/lumina-compiler`. To avoid the need of loading DOM modules in Node.js, * this file is extracted into a separate entrypoint. */ export declare const lazyMetaGroupJoiner = ";"; export declare const lazyMetaItemJoiner = ","; export declare const lazyMetaSubItemJoiner = ":"; /** * By default in Lit, the `@property()` decorator accepts an object. However, to * keep the bundle size smaller, in production builds, instead of passing it an * object, we pass it a compact number, that gets converted back to an object * in createProperty() at runtime. */ export declare const propertyFlagAttribute: number; export declare const propertyFlagReflect: number; export declare const propertyFlagBoolean: number; export declare const propertyFlagNumber: number; export declare const propertyFlagState: number; export declare const propertyFlagReadOnly: number; export declare const propertyFlagNoAccessor: number;