import React from 'react'; import { NormalSizes } from '../utils/prop-types'; import AvatarGroup from './AvatarGroup'; export interface AvatarProps { scale?: number; src?: string; text?: string; square?: boolean; size?: NormalSizes; className?: string; borderWidth?: string; borderColor?: string; borderRadius?: string; fontSize?: string; fontWeight?: string; fontFamily?: string; css?: any; } declare const defaultProps: { square: boolean; size: "mini" | "small" | "medium" | "large" | "fluid" | "auto"; borderWidth: string; borderRadius: string; }; declare type NativeAttrs = Omit, keyof AvatarProps>; export declare type GAvatarProps = AvatarProps & typeof defaultProps & NativeAttrs; declare type AvatarComponent = React.ForwardRefExoticComponent & React.RefAttributes> & { Group: typeof AvatarGroup; }; declare type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: AvatarComponent; export default _default;