import type { ZodSchema } from "zod"; /** * Read all data from stdin, parse as JSON, and validate with a Zod schema. * Used by hook commands (ingest, sync) to read the JSON that Claude Code * pipes to hook processes. */ export declare function readStdinJson(schema: ZodSchema): Promise;