/**
 * SSL Options Demonstration
 *
 * This example demonstrates the independent SSL/TLS configuration options
 * available in the HTML Parser Service for handling various SSL scenarios.
 *
 * Key Point: disableServerIdentityCheck is INDEPENDENT of ignoreSSLErrors
 * and only controls hostname validation.
 */
declare function demonstrateSSLOptions(verbose: boolean): Promise<void>;
export { demonstrateSSLOptions };
