/** * @ignore */ export declare class Registry { /** * Currently running version of amCharts. */ readonly version: string; /** * List of applied licenses. * @ignore */ licenses: String[]; /** * Entities that have their `id` setting set. */ entitiesById: { [index: string]: any; }; /** * All created [[Root]] elements. */ rootElements: any[]; /** * Automatically dispose a [[Root]] element if it exists in the target container. * * @since 5.14.4 */ autoDispose: boolean; } /** * @ignore */ export declare const registry: Registry; /** * Adds a license, e.g.: * * ```TypeScript * am5.addLicense("xxxxxxxx"); * ``` * ```JavaScript * am5.addLicense("xxxxxxxx"); * ``` * * Multiple licenses can be added to cover for multiple products. * * @param license License key */ export declare function addLicense(license: string): void; /** * Disposes all [[Root]] elements. */ export declare function disposeAllRootElements(): void; /** * Finds and returns a `Root` element assigned to a container with `id`. * * @param id Container ID * @return Root * @since 5.9.2 */ export declare function getRootById(id: string): any; //# sourceMappingURL=Registry.d.ts.map