import { Connection } from '../types/Connection';
interface Props {
connection: Connection;
isLoading?: boolean;
size?: 'large' | 'small';
}
declare const StatusBadge: ({ connection, isLoading, size, }: Props) => JSX.Element;
export default StatusBadge;