/** * This file contains examples of how to use the error handling system. * It is not used in production but serves as documentation and reference. */ /** * Example: Try to convert a URL to markdown with proper error handling */ declare function convertWithErrorHandling(url: string): Promise; /** * Example: Use assertions for validation */ declare function validateOptions(options: Record): void; /** * Example: Custom error creation and logging */ declare function performOperation(data: unknown): void; export { convertWithErrorHandling, validateOptions, performOperation };