/** The strategy to use for selecting chunks. */ export declare const ExtractChunkingOptionsChunkSelectionStrategy: { readonly Intelligent: "intelligent"; readonly Confidence: "confidence"; readonly TakeFirst: "take_first"; readonly TakeLast: "take_last"; }; export type ExtractChunkingOptionsChunkSelectionStrategy = (typeof ExtractChunkingOptionsChunkSelectionStrategy)[keyof typeof ExtractChunkingOptionsChunkSelectionStrategy] | string;