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