import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IProps extends IReactComponentProps { className?: string; containerClassName?: string; onError?: FunctionGeneric; onLoad?: FunctionGeneric; size?: 'm' | 's' | string; square?: boolean; src: string; tag?: string; } export default class ImageCircle extends React.Component { static defaultProps: Partial; render(): React.JSX.Element; } export {}; //# sourceMappingURL=ImageCircle.d.ts.map