/** * Effectful path helpers for agent configuration directories. * * All path computation uses `@effect/platform` Path service. Consumers * must yield these in an Effect context. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import * as Path from "effect/Path"; import * as Effect from "effect/Effect"; /** * Resolve the user's home directory. * * @experimental This API is unstable and may change without notice. */ export declare const getHome: Effect.Effect; /** * Resolve the XDG config home directory. * * Uses `XDG_CONFIG_HOME` environment variable if set, otherwise defaults to `~/.config`. * * @experimental This API is unstable and may change without notice. */ export declare const getConfigHome: Effect.Effect; //# sourceMappingURL=constants.d.ts.map