import * as Effect from "effect/Effect"; import * as FileSystem from "effect/FileSystem"; import { type AppError } from "../app-error/index.js"; export interface CreateOnlyPreflightArgs { readonly subject: string; readonly name: string; readonly configured: boolean; readonly destinations: ReadonlyArray; } /** Refuse every declared identity/path collision before a create operation mutates the workspace. */ export declare const preflightCreateOnly: (args: CreateOnlyPreflightArgs) => Effect.Effect; //# sourceMappingURL=create-preflight.d.ts.map