import { PauseExecutionError, CallbackType } from './types.js'; export { PauseExecutionError, CallbackType, LLMOperation, EmbeddingOperation, ApprovalOperation, ToolOperation, } from './types.js'; /** * Helper to create pause error */ export declare function pauseForCallback(type: CallbackType, operation: string, payload: Record): never; /** * Check if error is a pause request */ export declare function isPauseError(error: unknown): error is PauseExecutionError; //# sourceMappingURL=index.d.ts.map