/** * @license * Copyright (c) 2023 Valentin Degenne * SPDX-License-Identifier: MIT */ import { type ReactiveElement } from 'lit'; import { type ClassDescriptor } from '../../decorators/base.js'; import { type ReactiveController } from '../reactive-controller.js'; /** * @category Decorator * @param controllerClassOrInstance The controller to be used on the custom element */ export declare function withController(controllerClassOrInstance: ReactiveController | typeof ReactiveController): (classOrDescriptor: typeof ReactiveElement | ClassDescriptor) => any; //# sourceMappingURL=with-controller.d.ts.map