import { WebTypesOptions, WebTypesElement, WebTypes } from './types.ts'; import { ApiCustomElementDeclaration } from '@arcgis/api-extractor/apiJson'; /** * Originally based on * https://github.com/break-stuff/cem-tools/tree/main/packages/jet-brains-integration * * Moved in house mainly because of * https://github.com/prettier/prettier-synchronized/issues/22 * That issue affects all debuggers, not just VS Code, and since the cause is * in the global scope, it affects the program even if generateWebTypes wasn't * called. * * But also there are several other quality issues with the original plugin, * including: * - https://github.com/break-stuff/cem-tools/issues/151 * - https://github.com/break-stuff/cem-tools/issues/141 * - https://github.com/break-stuff/cem-tools/issues/112 */ export declare function generateWebTypes(components: ApiCustomElementDeclaration[], options: WebTypesOptions): WebTypes; export declare const getTagList: (components: ApiCustomElementDeclaration[]) => WebTypesElement[];