import { ComponentPropsWithRef } from 'react'; /** * Renders the GitHub logo as an inline SVG. * * The SVG sets role="img" and aria-label="GitHub" and uses a path filled with `currentColor` so it inherits text color. * * @param props - Props spread onto the root `` element (standard SVG attributes and event handlers). * @returns The SVG element for the GitHub mark. */ export declare function GitHub(props: ComponentPropsWithRef<"svg">): import("react").JSX.Element;