import { AgentId } from "./compat/codecs.mjs"; import { i as PermissionMode } from "./schema-CxeU0PxE.mjs"; //#region src/guards.d.ts /** * Narrowing guards shared across the library. Each derives its truth from the schema/enum it protects (the zod enum's own options list), so a new value added to the schema is automatically accepted here without an edit. */ declare function isRecord(value: unknown): value is Record; declare function isAgentId(value: string): value is AgentId; declare function isPermissionMode(value: string): value is PermissionMode; //#endregion export { isAgentId, isPermissionMode, isRecord }; //# sourceMappingURL=guards.d.mts.map