/// <reference types="react" />
export declare const StyledUserName: import("styled-components").StyledComponent<"div", any, any, never>;
export declare const StyledUserEmail: import("styled-components").StyledComponent<"div", any, any, never>;
export interface AvatarProps {
    /**
     * The user's picture.
     */
    picture?: string;
    /**
     * The user's name.
     */
    name: string;
    /**
     * The user's email.
     */
    email: string;
}
/**
 * The teaser for a user. It can be used to display a
 * small set of information about a user on the user detail page or
 * any other part where its relevant to show small snippets of user information.
 */
export declare const AvatarTeaser: ({ picture, name, email }: AvatarProps) => JSX.Element;
export default AvatarTeaser;
