/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ import { z } from "zod/v4"; /** * @description Represents the type of event that occurred in the context of a task. */ export declare const KindSchema: z.ZodEnum<{ file: "file"; message: "message"; "artifact-update": "artifact-update"; data: "data"; "status-update": "status-update"; task: "task"; text: "text"; }>; export declare const Kind: { file: "file"; message: "message"; "artifact-update": "artifact-update"; data: "data"; "status-update": "status-update"; task: "task"; text: "text"; }; export type Kind = z.output; //# sourceMappingURL=kind.d.ts.map