import { ImageProps } from "./Image.js";
import type { ForwardRef } from "./types.js";
export interface AvatarProps extends ImageProps {
    size?: number | string;
}
export declare const Avatar: ForwardRef<HTMLImageElement, AvatarProps>;
