/** * Source provider for generic git repositories. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import * as FileSystem from "effect/FileSystem"; import * as Path from "effect/Path"; import type * as Scope from "effect/Scope"; import type { SourceHostProvider, GitSource } from "../../sources/index.js"; /** * Source host provider for generic git URLs. * * Self-describing — no host config needed. * `match` returns true for git://, ssh://, and git@... URL schemes. * * @experimental This API is unstable and may change without notice. */ export declare const createGitSourceHostProvider: () => SourceHostProvider; //# sourceMappingURL=git.d.ts.map