/** The strategy to use for chunking the document. */ export declare const ExtractChunkingOptionsChunkingStrategy: { readonly Standard: "standard"; readonly Semantic: "semantic"; readonly Contextual: "contextual"; }; export type ExtractChunkingOptionsChunkingStrategy = (typeof ExtractChunkingOptionsChunkingStrategy)[keyof typeof ExtractChunkingOptionsChunkingStrategy] | string;