/** The base processor to use. For splitters, this can be either `"splitting_performance"` or `"splitting_light"`. Defaults to `"splitting_performance"` if not provided. See [Splitting Changelog](https://docs.extend.ai/2026-02-09/changelog/splitting/splitting-performance) for more details. */ export declare const SplitBaseProcessor: { readonly SplittingPerformance: "splitting_performance"; readonly SplittingLight: "splitting_light"; }; export type SplitBaseProcessor = (typeof SplitBaseProcessor)[keyof typeof SplitBaseProcessor] | string;