import React from 'react';
import { type InternalProps } from '../common/Base';
export interface SizeProps extends InternalProps {
    /**
     * Github Size
     *
     * /github/languages/code-size/:user/:repo
     * /github/repo-size/:user/:repo
     * /github/size/:user/:repo/:path*
     */
    type?: 'languages' | 'repo-size' | 'size';
    /**
     * GitHub file size in bytes
     * build/phaser-craft.min.js
     */
    path?: string;
}
export declare const Size: React.ForwardRefExoticComponent<SizeProps & React.RefAttributes<HTMLImageElement>>;
