import type * as Extend from "../index"; /** * Strategy for dividing the document into chunks. */ export interface ParseConfigChunkingStrategy { /** * The type of chunking strategy. Supported values: * * * `page`: Chunk document by pages. * * `document`: Entire document is a single chunk. Essentially no chunking. * * `section`: Split by logical sections. Not supported for target=spatial. */ type?: Extend.ParseConfigChunkingStrategyType; /** Additional options for the chunking strategy. */ options?: Extend.ParseConfigChunkingStrategyOptions; }