import { Ref } from 'lit/directives/ref.js'; import { ZScrollIndicator_Props } from '@zurich/dev-utils/code/ScrollIndicator'; import { ZDSElement } from './base'; /** ## `` * * ... * * @example * ```tsx * * ``` * ___ * * */ export declare class ZScrollIndicator extends ZDSElement implements ZScrollIndicator_Props { readonly _name = "scroll-indicator"; barRef: Ref; render(): import('lit-html').TemplateResult<1>; onScroll(): void; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-scroll-indicator': ZScrollIndicator; } }