import { ZDSElement } from './base'; import { ZShareBar_Props } from '@zurich/dev-utils/code/ShareBar'; /** ## `` * * Component docs. */ export declare class ZShareBar extends ZDSElement implements ZShareBar_Props { #private; readonly _name = "share-bar"; static sharers: { line: string; bluesky: string; facebook: string; linkedin: string; reddit: string; telegram: string; threads: string; twitter: string; wechat: string; whatsapp: string; workplace: string; }; social?: ZShareBar_Props['social']; content?: ZShareBar_Props['content']; mailto?: ZShareBar_Props['mailto']; render(): import('lit-html').TemplateResult<1>; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-share-bar': ZShareBar; } }