import { LitElement } from './LitElement.ts'; /** * When in lazy-build, the actual Lit element is never attached to the DOM. * Instead, a proxy element is present and should be used for all DOM actions. * * In practice, this means using this.el.getAttribute() instead of * this.getAttribute() and etc for each DOM method. * * To detect incorrect usages, this function overwrites each DOM member on the * LitElement prototype with an exception-throwing function. * * This code does not ship in production builds. */ export declare function devOnlyDetectIncorrectLazyUsages(LitClass: typeof LitElement): void;