import { type CenterProps } from '@lobehub/ui';
import { CSSProperties } from 'react';
import { IconType } from "../../types";
export interface IconAvatarProps extends Omit<CenterProps, 'children'> {
    Icon?: IconType;
    background?: string;
    color?: string;
    iconClassName?: string;
    iconMultiple?: number;
    iconStyle?: CSSProperties;
    shape?: 'circle' | 'square';
    size: number;
}
declare const IconAvatar: import("react").NamedExoticComponent<IconAvatarProps>;
export default IconAvatar;
