import type * as Extend from "../index"; /** * Reference to an existing splitter. One of `splitter` or `config` must be provided. */ export interface SplitRequestSplitter { /** The ID of the splitter to use. */ id: string; version?: Extend.ProcessorVersionString; /** Optional partial configuration override. Only the fields you provide will override the splitter's saved configuration. For example, you can pass only `splitRules` without providing `splitClassifications`. */ overrideConfig?: Extend.SplitOverrideConfig; }