/**
 * User avatar props
 */
export interface UserAvatarProps {
    /**
     * Photo src
     */
    src?: string;
    /**
     * Format title
     */
    formatTitle?: (title?: string) => string;
    /**
     * Title of the user
     */
    title?: string;
}
/**
 * User avatar
 * @param props Props
 * @returns Component
 */
export declare function UserAvatar(props: UserAvatarProps): import("react/jsx-runtime").JSX.Element;
