import type { EmptyObject } from '../../../framework-types/BaseTypes'; import type { createStreamingStateAtom, StreamingStateAtom } from './atoms/StreamingStateAtom'; export declare const StreamingState = "streaming-state"; export type StreamingState = { [StreamingState]: StreamingStateAtom; }; export declare const CreateStreamingStateAtom = "create-streaming-state-atom"; export type CreateStreamingStateAtom = { [CreateStreamingStateAtom]: typeof createStreamingStateAtom; }; export type StreamingPackageDependencies = EmptyObject; export type StreamingPackageExports = CreateStreamingStateAtom;