import React from 'react';
import { type InternalProps } from '../common/Base';
export interface LicenseProps extends InternalProps {
    /**
     * Github License
     *
     * `/github/license/:user/:repo`
     * GitHub: GitHub badge
     */
    type?: 'license';
}
export declare const License: React.ForwardRefExoticComponent<LicenseProps & React.RefAttributes<HTMLImageElement>>;
