import { URL } from 'node:url'; export type GithubUrlConfig = string | { type: string; url: string; directory?: string; }; export default class GithubUrl extends URL { constructor(repository: GithubUrlConfig); is(): boolean; isValid(): boolean; static isPrefixedShortcutSyntax(repository?: string): boolean; static isUnprefixedShortcutSyntax(repository?: string): boolean; static unprefixShortcutSyntax(repository?: string): string; } //# sourceMappingURL=GithubUrl.d.ts.map