export interface Avatar {
    scale?: number;
    size?: number;
    img?: string;
    title?: string;
    name?: string;
    hideName?: boolean;
    color?: string;
    character?: number | string;
    display?: number;
    stroke?: number;
    align?: "left" | "right";
    fill?: string | boolean;
    style?: object;
    ellipsis?: string;
}
export default function Avatar(props: Avatar): import("react").JSX.Element;
//# sourceMappingURL=Avatar.d.ts.map