import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; interface IProps extends IReactComponentProps { color?: 'blue' | 'green' | 'yellow' | 'orange' | 'red' | 'pink' | 'purple'; initials?: string; placeholderSrc?: string; size?: 's' | 'm' | 'l' | string; src?: string; type: 'user' | 'team'; } interface IState { isImageError: boolean; isImageLoaded: boolean; } export default class Avatar extends React.Component { static defaultProps: Partial; constructor(props: IProps); UNSAFE_componentWillReceiveProps(nextProps: IProps): void; onError(): void; onLoad(): void; getSize(): string; render(): React.JSX.Element; } export {}; //# sourceMappingURL=Avatar.d.ts.map