import React from 'react';
import { type InternalProps } from '../common/Base';
export interface SocialProps extends InternalProps {
    /**
     * Github License
     *
     * `/github/followers/:user?label=Follow`
     * GitHub followers: GitHub followers badge
     *
     * `/github/forks/:user/:repo?label=Fork`
     * GitHub forks: GitHub forks badge
     *
     * `/github/stars/:user/:repo?style=social`
     * GitHub stars: GitHub stars badge
     *
     * `/github/watchers/:user/:repo?label=Watch`
     * GitHub watchers:  GitHub watchers badge
     */
    type?: 'followers' | 'forks' | 'stars' | 'watchers';
}
declare const Social: React.ForwardRefExoticComponent<SocialProps & React.RefAttributes<HTMLImageElement>>;
export default Social;
