import type { WorkflowInterceptors } from '@temporalio/workflow'; /** * Simple interceptor that transforms {@link assert.AssertionError} into non retryable failures. * * This allows conveniently using `assert` directly from Workflows. */ export declare function interceptors(): WorkflowInterceptors;