/** * Source provider for local filesystem paths. * * Wraps the existing `skillsInDir` logic into the `SourceHostProvider` interface. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type * as FileSystem from "effect/FileSystem"; import type * as Path from "effect/Path"; import type { SourceHostProvider, LocalSource } from "../../sources/index.js"; /** * Source host provider for local filesystem paths. * * Self-describing — no host config needed. * `match` returns true for file:// URLs and absolute/relative paths. * * @experimental This API is unstable and may change without notice. */ export declare const createLocalSourceHostProvider: () => SourceHostProvider; //# sourceMappingURL=local.d.ts.map