import { PersonaPresence } from '../../../Types/PersonaPresence'; import { AvatarElement } from '../Avatar/AvatarElement'; import type { IPersonaElementProps } from './IPersonaElementProps'; declare const PersonaElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Orientable").IOrientableProps) & (abstract new (...args: Array) => import("../../../Behaviors/ContentAlignable").IContentAlignableProps) & typeof AvatarElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Persona - A visual representation of an individual user or character, typically displayed as an avatar along with additional information such as name, role, or status. * Personas are commonly used to provide context and personalization in user interfaces. * * @element mosaik-persona * * @csspart avatar - The avatar part of persona. * @csspart presence - The presence part of persona. * @csspart primaryText - The text part of persona. * @csspart quaternaryText - The text part of persona. * @csspart root - The root part of persona. * @csspart secondaryText - The text part of persona. * @csspart tertiaryText - The text part of persona. * * @cssprop {String} --persona-background-color - The background color CSS custom property. * @cssprop {String} --persona-border-color - The border color CSS custom property. * @cssprop {String} --persona-border-radius - The border radius CSS custom property. * @cssprop {String} --persona-border-style - The border style CSS custom property. * @cssprop {String} --persona-border-width - The border width CSS custom property. * @cssprop {String} --persona-font-family - The font family CSS custom property. * @cssprop {String} --persona-font-letter-spacing - The font letter spacing CSS custom property. * @cssprop {String} --persona-font-line-height - The font line height CSS custom property. * @cssprop {String} --persona-font-size - The font size CSS custom property. * @cssprop {String} --persona-font-text-decoration - The font text decoration CSS custom property. * @cssprop {String} --persona-font-text-transform - The font text transform CSS custom property. * @cssprop {String} --persona-font-weight - The font weight CSS custom property. * @cssprop {String} --persona-foreground-color - The foreground color CSS custom property. * @cssprop {String} --persona-gap - The gap CSS custom property. * @cssprop {String} --persona-padding-bottom - The padding bottom CSS custom property. * @cssprop {String} --persona-padding-left - The padding left CSS custom property. * @cssprop {String} --persona-padding-right - The padding right CSS custom property. * @cssprop {String} --persona-padding-top - The padding top CSS custom property. * @cssprop {String} --persona-shadow - The shadow CSS custom property. * @cssprop {String} --persona-shadow-blur - The shadow blur CSS custom property. * @cssprop {String} --persona-shadow-color - The shadow color CSS custom property. * @cssprop {String} --persona-shadow-offset-x - The shadow offset x CSS custom property. * @cssprop {String} --persona-shadow-offset-y - The shadow offset y CSS custom property. * @cssprop {String} --persona-shadow-spread - The shadow spread CSS custom property. * @cssprop {String} --persona-transition-duration - The transition duration CSS custom property. * @cssprop {String} --persona-transition-mode - The transition mode CSS custom property. * @cssprop {String} --persona-transition-property - The transition property CSS custom property. * @cssprop {String} --persona-translate - The translate CSS custom property. * * @dependency mosaik-avatar - The Avatar element. * @dependency mosaik-dot - The Dot element. * @dependency mosaik-stack - The Stack element. * @dependency mosaik-text - The Text element. * * @example * ```html * * * * * * * * * ``` * * @public */ export declare class PersonaElement extends PersonaElement_base implements IPersonaElementProps { private _primaryText; private _secondaryText; private _tertiaryText; private _quaternaryText; private _presence; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @override * @readonly */ static get is(): string; /** * The first line of text in the Persona, larger than the rest of the lines. * * @public */ get primaryText(): string; set primaryText(value: string); /** * The second line of text in the Persona. * * @public */ get secondaryText(): string; set secondaryText(value: string); /** * The third line of text in the Persona. * * @public */ get tertiaryText(): string; set tertiaryText(value: string); /** * The fourth line of text in the Persona. * * @public */ get quaternaryText(): string; set quaternaryText(value: string); /** * The presence Badge to display. * * @public */ get presence(): PersonaPresence; set presence(value: PersonaPresence); } /** * @public */ export declare namespace PersonaElement { type Props = IPersonaElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-persona': PersonaElement; } } export {}; //# sourceMappingURL=PersonaElement.d.ts.map