import { UmbLitElement } from '../../../lit-element/index.js'; /** * @element umb-sensitive-value * @description Renders in place of a value the current user is not permitted to see. Use it wherever a value * is withheld, so that the field remains visible as one that exists. */ export declare class UmbSensitiveValueElement extends UmbLitElement { /** * Renders the message without the note on how to gain access. Use where several withheld values appear * together and the note would repeat, and state that note once for the group instead. * @attr * @default false */ short: boolean; render(): import("lit-html").TemplateResult<1>; static readonly styles: import("lit").CSSResult[]; } export default UmbSensitiveValueElement; declare global { interface HTMLElementTagNameMap { 'umb-sensitive-value': UmbSensitiveValueElement; } }