import { ZLocalized } from './localized'; import { ZCurrency_Props } from '@zurich/dev-utils/code/Currency'; /** ## `` * * Component docs. */ export declare class ZCurrency extends ZLocalized implements ZCurrency_Props { readonly _name = "currency"; amount?: ZCurrency_Props['amount']; currency: ZCurrency_Props['currency']; decimals?: ZCurrency_Props['decimals']; render(): import('lit-html').TemplateResult<1>; get parsedValue(): string; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-currency': ZCurrency; } }