import { WsgEvent, WsgError } from './types'; export declare class ConnectionException extends Error { wsgEvent: WsgEvent; wsgError: WsgError; constructor(wsgEvent: WsgEvent); } export declare class TimeoutException extends Error { constructor(message?: string); } export declare class ClosedException extends Error { constructor(message?: string); }