import type { StreamInstance } from '../instance.js'; export interface HelloInput { clientName: string; clientVersion: string; } export interface HelloOutput { version: '1.0.0'; } export type Hello = (input: Readonly) => Promise; export declare const createHello: (instance: Readonly) => Hello; //# sourceMappingURL=hello.d.ts.map