/** * Shared filesystem helpers for canonical extension cleanup. * * @experimental This API is unstable and may change without notice. */ import * as FileSystem from "effect/FileSystem"; import * as Effect from "effect/Effect"; /** * Remove a directory if it exists. */ export declare const removeIfExists: (fsService: FileSystem.FileSystem, dirPath: string) => Effect.Effect; /** Convert a file URL to the current platform's native path representation. */ export declare const stripFileProtocol: (location: string) => string; //# sourceMappingURL=fs-helpers.d.ts.map