/** * 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. */ export declare const ParseConfigChunkingStrategyType: { readonly Page: "page"; readonly Document: "document"; readonly Section: "section"; }; export type ParseConfigChunkingStrategyType = (typeof ParseConfigChunkingStrategyType)[keyof typeof ParseConfigChunkingStrategyType] | string;