import { type ComponentInterface } from "../../stencil-public-runtime"; /** * The avatar component is used to display the user's profile picture. * Wrap it with a container, to determine its size, since it scales to fit container. */ export declare class ScoutAvatar implements ComponentInterface { /** * The source URL of the user image. */ imageSrc: string; /** * The name of the user. */ alt: string; render(): any; }