## Problem Users are manually defining types for things like `StreamConfig` because the SDK doesn't export them from the root index. ## Solution Ensure `export type { StreamConfig, StreamState, Recipient } from './types'` is present in `src/index.ts`.
Problem
Users are manually defining types for things like
StreamConfigbecause the SDK doesn't export them from the root index.Solution
Ensure
export type { StreamConfig, StreamState, Recipient } from './types'is present insrc/index.ts.