interface Props {
    href: string;
    title?: string;
    aria_label?: string;
    target?: `_self` | `_blank`;
    color?: string | null;
    fill?: string | null;
    corner?: `top-left` | `top-right` | `bottom-left` | `bottom-right`;
    style?: string;
}
declare const GitHubCorner: import("svelte").Component<Props, {}, "">;
type GitHubCorner = ReturnType<typeof GitHubCorner>;
export default GitHubCorner;
