import { z } from 'zod'; /** * Describes that the text is part of a chunk, * and provides information about the chunk. */ export declare const ChunkSchema: z.ZodObject<{ /** * The unique identifier of the chunk. */ id: z.ZodString; /** * The order of the chunk in the text. */ order: z.ZodNumber; /** * The total number of chunks in the text. */ total: z.ZodOptional; /** * The start offset of the chunk in the text. */ startOffset: z.ZodOptional; /** * The end offset of the chunk in the text. */ endOffset: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; order: number; total?: number | undefined; startOffset?: number | undefined; endOffset?: number | undefined; }, { id: string; order: number; total?: number | undefined; startOffset?: number | undefined; endOffset?: number | undefined; }>; export type Chunk = z.infer;