import Base, { BaseProps } from '../common/Base';
export interface LicenseProps extends BaseProps {
    /**
     * Github License
     *
     * `/github/license/:user/:repo`
     * GitHub: GitHub badge
     */
    type?: 'license';
}
export default class License extends Base<LicenseProps> {
    constructor(props: LicenseProps);
    getUrl: () => string;
}
