import { LitElement } from 'lit'; /** * Inline Loader. * @fires on-start - Emits when the loader been started. `detail: null` * @fires on-stop - Emits when the loader has been stopped and all animations have completed. `detail: null` * @slot unnamed - Slot for text/description. */ export declare class LoaderInline extends LitElement { static styles: import("lit").CSSResult; /** Status. Can be `active`, `inactive`, `success`, `error`. */ accessor status: string; /** Animation loop has finished and stopped * @internal */ private accessor _stopped; /** Hidden state * @internal */ private accessor _hidden; /** Animation container element * @internal */ private accessor _containerEl; render(): import("lit-html").TemplateResult<1>; firstUpdated(): void; updated(changedProps: any): void; private _emitStart; private _emitStop; } declare global { interface HTMLElementTagNameMap { 'kyn-loader-inline': LoaderInline; } } //# sourceMappingURL=inline.d.ts.map