import { ReactiveElement } from 'lit'; import { AbstractConstructor } from '../mixins.ts'; /** * Applies the given attributes to the related element. * If an empty string is passed as a value, the attribute will be set * without value. * * @example * * @customElement('my-element) * @hostAttributes({ * role: 'region' * }) * export class MyElement extends LitElement { * ... * } * * @param attributes A record of attributes to apply to the element. * @deprecated Will be removed with next major version. */ export declare const hostAttributes: (attributes: Record) => (target: AbstractConstructor) => void; //# sourceMappingURL=host-attributes.d.ts.map