import { LitElement } from 'lit'; type Constructor = new (...args: any[]) => T; export declare const AttributeDeletionMixin: >(superClass: T) => T; /** * Determines whether a given attribute should be removed from the host element. * * @param attribute - The name of the attribute to check. * @returns `true` if the attribute should be removed, otherwise `false`. */ export declare function isAttributeToRemove(attribute: string): boolean; export {};