import { ZDSElement } from './base'; import { ZShareButton_Props } from '@zurich/dev-utils/code/ShareButton'; /** ## `` * * Component docs. */ export declare class ZShareButton extends ZDSElement implements ZShareButton_Props { #private; readonly _name = "share-button"; 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?: ZShareButton_Props['social']; config?: ZShareButton_Props['config']; mailto?: ZShareButton_Props['mailto']; render(): import('lit-html').TemplateResult<1>; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-share-button': ZShareButton; } }