import React from 'react'; import { Size, Badge as BadgeType, Shape } from '../types'; declare const User: React.FC; export interface UserProps { size?: Size; shape?: Shape; name?: string; title?: string; color?: string; image?: string; showInitials?: boolean; onlyPicture?: boolean; inverse?: boolean; badge?: BadgeType; } export default User; //# sourceMappingURL=index.d.ts.map