import { ARIARole } from "./utils/aria.js"; import { LitElement, TemplateResult } from "lit"; /** * @internal * Base class for all ODX custom elements. * All ODX custom elements should extend this class. */ declare class CustomElement extends LitElement { static tagName: string; role: ARIARole | null; dir: 'ltr' | 'rtl'; protected render(): TemplateResult; /** @internal */ static define(): void; } export { CustomElement };