/** @packageDocumentation * @module Backstage */ import "./UserProfile.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; import { SafeAreaInsets } from "../utilities/SafeAreaInsets"; /** Properties of [[UserProfile]] component. * @beta */ export interface UserProfileProps extends CommonProps { /** User name. */ children?: string; /** Color of initials circle (CSS value). */ color?: string; /** User initials. */ initials?: string; /** Function called when the profile is clicked. */ onClick?: () => void; /** Describes respected safe area insets. */ safeAreaInsets?: SafeAreaInsets; } /** User profile component used in [[Backstage]] header. * @beta */ export declare class UserProfile extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=UserProfile.d.ts.map