import type * as Extend from "../index"; export interface ExtractChunkingOptions { /** The strategy to use for chunking the document. */ chunkingStrategy?: Extend.ExtractChunkingOptionsChunkingStrategy; /** The size of page chunks. */ pageChunkSize?: number; /** The strategy to use for selecting chunks. */ chunkSelectionStrategy?: Extend.ExtractChunkingOptionsChunkSelectionStrategy; /** Custom rules for semantic chunking. */ customSemanticChunkingRules?: string; }