import type { IContentAlignableProps } from '../../../Behaviors/ContentAlignable'; import type { PersonaPresence } from '../../../Types/PersonaPresence'; import type { IAvatarElementProps } from '../Avatar/IAvatarElementProps'; /** * Represents the `IPersonaElementProps` interface. * * @public */ export interface IPersonaElementProps extends IAvatarElementProps, IContentAlignableProps { /** * The first line of text in the Persona, larger than the rest of the lines. */ primaryText: string; /** * The second line of text in the Persona. */ secondaryText: string; /** * The third line of text in the Persona. */ tertiaryText: string; /** * The fourth line of text in the Persona. */ quaternaryText: string; /** * The presence Badge to display. */ presence: PersonaPresence; } //# sourceMappingURL=IPersonaElementProps.d.ts.map