import * as lit_html from 'lit-html';
import * as lit from 'lit';
import { LitElement } from 'lit';
declare class LoadingText extends LitElement {
ariaHidden: string | null;
static readonly styles: lit.CSSResult[];
render(): lit_html.TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'dmd-loading-text': LoadingText;
}
}
export { LoadingText };