export interface GitHubButtonProps {
  "href": string;
  "aria-label"?: string;
  "title"?: string;
  "data-icon"?: string;
  "data-color-scheme"?: string;
  "data-size"?: string;
  "data-show-count"?: boolean | string;
  "data-text"?: string;
}

export function render(props: GitHubButtonProps | HTMLAnchorElement, callback: (el: HTMLIFrameElement | HTMLSpanElement) => void): void;
