export declare const ConnectionCloseCode: { readonly Removed: 4000; readonly Expired: 4001; readonly NotFound: 4002; }; export type ConnectionCloseCode = (typeof ConnectionCloseCode)[keyof typeof ConnectionCloseCode]; export declare const ConnectionCloseReason: { readonly Removed: "Page has been removed"; readonly Expired: "Page has expired"; readonly NotFound: "Page not found"; }; export type ConnectionCloseReason = (typeof ConnectionCloseReason)[keyof typeof ConnectionCloseReason]; //# sourceMappingURL=connection.d.ts.map