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