/** * Backend-only: Get default stream endpoints. * * IMPORTANT: This file must only be imported from entry-backend.ts. * Do NOT import from frontend entries or CoreInitializer directly. * * Stream endpoints are backend-only (SSE/WebSocket servers). */ import type { StreamEndpointEntry } from '@plyaz/types/core'; /** * Get default stream endpoints for the streaming system. * Dynamically imports endpoints to avoid bundling in frontend. * * @internal Only used by backend entry point */ export declare function getCoreStreamEndpoints(): Promise; //# sourceMappingURL=getCoreStreamEndpoints.d.ts.map