/** * Like Lit's `@customElement`, but skips registration when the tag already exists. * Both published bundles inline core, so pages that load dictation and ambient * must not throw on duplicate registry entries. */ export declare function safeCustomElement(tag: string): (classOrTarget: T, context?: ClassDecoratorContext) => T;