/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface AvatarProps extends Omit, "size"> { /** Image URL; falls back to initials if it fails to load. */ src?: string; alt?: string; /** One or two characters shown without an image. */ initials?: string; size?: "sm" | "md" | "lg" | "xl"; } /** * Circular person mark: an image, or initials. * * @example * */ export declare const Avatar: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Avatar.d.ts.map