import { AvatarProps } from "antd"; import { ReactNode } from "react"; interface PlusAvatarProps extends AvatarProps { src: string; alt?: string | undefined; shape?: "circle" | "square" | undefined; size?: number; icon?: ReactNode; } declare const PlusAvatar: ({ src, alt, shape, size, icon, ...rest }: PlusAvatarProps) => JSX.Element; export { PlusAvatar }; //# sourceMappingURL=index.d.ts.map