import { type Define } from '@sigx/lynx'; import type { SizeScale } from '@sigx/lynx-zero'; export type AvatarSize = SizeScale; export type AvatarProps = Define.Prop<'src', string, false> & Define.Prop<'size', AvatarSize, false> /** `true`/`'full'` = circle; otherwise the hero rounded-square radius. */ & Define.Prop<'rounded', boolean | 'full', false> & Define.Prop<'placeholder', string, false> & Define.Prop<'class', string, false>; export declare const Avatar: import("@sigx/runtime-core").ComponentFactory; //# sourceMappingURL=Avatar.d.ts.map