import { AvatarImage as Component } from './AvatarImage'; export declare const AvatarImage: { readonly name: "AvatarImage"; readonly purpose: "Image inside an Avatar; pair it with AvatarFallback for missing images."; readonly example: "\n \n CN\n"; readonly body: "none"; readonly props: readonly [{ readonly name: "src"; readonly type: "string"; readonly required: true; readonly description: "URL of the avatar image."; }, { readonly name: "alt"; readonly type: "string"; readonly description: "Text alternative for the image."; }]; readonly Component: typeof Component; };