import type { Static, TSchema } from "@sinclair/typebox"; export interface HappyPluginEventStream { readonly closed: Promise; close(): void; } export declare function openHappyPluginEventStream(options: { eventSchema: TEventSchema; label: string; onEvent: (event: Static) => void | Promise; path: string; socketPath: string; token: string; }): Promise; //# sourceMappingURL=openHappyPluginEventStream.d.ts.map