export declare const UNKNOWN_ERROR: import("../types.js").RegisteredError; export declare const AUTHENTICATION_REQUIRED: import("../types.js").RegisteredError; export declare const PERMISSION_DENIED: import("../types.js").RegisteredError; export declare const FILE_NOT_FOUND: import("../types.js").RegisteredError; export declare const RESOURCE_NOT_FOUND: import("../types.js").RegisteredError; /** * A value the caller supplied is not acceptable: a CLI flag, a positional * argument, a config field, or a function argument. Exit code 2 is the CLI's * "invalid usage" code, so a script can tell a typo from a failed run. */ export declare const INVALID_ARGUMENT: import("../types.js").RegisteredError; /** Writing would replace something that is already there. */ export declare const ALREADY_EXISTS: import("../types.js").RegisteredError; export declare const TIMEOUT_ERROR: import("../types.js").RegisteredError; export declare const INITIALIZATION_ERROR: import("../types.js").RegisteredError; export declare const NOT_SUPPORTED: import("../types.js").RegisteredError; /** Path traversal / secure-fs violations (replaces SecurityError) */ export declare const SECURITY_VIOLATION: import("../types.js").RegisteredError; /** HTTP request input validation failures (replaces ValidationError) */ export declare const INPUT_VALIDATION_FAILED: import("../types.js").RegisteredError; export declare const PROJECT_SOURCE_EMPTY: import("../types.js").RegisteredError; /** A scope that owns the process working directory was opened inside another one. */ export declare const NESTED_CWD_SCOPE: import("../types.js").RegisteredError; /** * All registered errors for lookup by slug */ /** Registry fragment for GENERAL errors (slug → definition). */ export declare const GENERAL_REGISTRY: { readonly "unknown-error": import("../types.js").RegisteredError; readonly "authentication-required": import("../types.js").RegisteredError; readonly "permission-denied": import("../types.js").RegisteredError; readonly "file-not-found": import("../types.js").RegisteredError; readonly "resource-not-found": import("../types.js").RegisteredError; readonly "invalid-argument": import("../types.js").RegisteredError; readonly "already-exists": import("../types.js").RegisteredError; readonly "timeout-error": import("../types.js").RegisteredError; readonly "initialization-error": import("../types.js").RegisteredError; readonly "not-supported": import("../types.js").RegisteredError; readonly "security-violation": import("../types.js").RegisteredError; readonly "input-validation-failed": import("../types.js").RegisteredError; readonly "project-source-empty": import("../types.js").RegisteredError; readonly "nested-cwd-scope": import("../types.js").RegisteredError; }; //# sourceMappingURL=general.d.ts.map