import type { ActivityInterceptor, Interceptor, WorkflowInterceptor } from './interceptor-interfaces.ts'; /** * Split a unified interceptor list into the workflow and activity pipelines. * * Interceptors with both workflow-side hooks and `execute` appear in both * arrays. Interceptors without recognized callable hooks are skipped. */ export declare function splitInterceptors(list: readonly Interceptor[]): { workflow: WorkflowInterceptor[]; activity: ActivityInterceptor[]; };