/** * Default repository host used when expanding `owner/repo` shorthand specifiers. */ export type RepositorySource = "github" | "gitlab"; /** GitHub HTTPS URL pattern — owner/repo must start with alphanumeric (no dash prefix). */ export declare const GITHUB_HTTPS_URL: RegExp; /** GitHub SSH URL pattern — owner/repo must start with alphanumeric (no dash prefix). */ export declare const GITHUB_SSH_URL: RegExp; /** GitLab HTTPS URL pattern — supports nested groups/subgroups. */ export declare const GITLAB_HTTPS_URL: RegExp; /** GitLab SSH URL pattern — supports nested groups/subgroups. */ export declare const GITLAB_SSH_URL: RegExp; //# sourceMappingURL=repository-source.d.ts.map