import { AnchorHTMLAttributes, ReactElement, RefAttributes } from 'react';
export default function Provider({ children, repo, Link, }: {
children: JSX.Element;
Link: (props: {
href: string;
} & AnchorHTMLAttributes & RefAttributes) => ReactElement | null;
repo: {
owner: string;
name: string;
} | undefined;
}): JSX.Element;