/**
 * Generate a self-signed fallback certificate (CN=SmartProxy Default Certificate, SAN=*).
 * Used as the '*' wildcard fallback so TLS handshakes never reset due to missing certs.
 */
export declare function generateDefaultCertificate(): {
    cert: string;
    key: string;
};
