import type { StreamInstance } from '../instance.js'; import type { Topic } from '../types.js'; export interface UnsubscribeInput { readonly topics: readonly Topic[]; } export interface UnsubscribeOutput { unsubscribed: Topic[]; } export type Unsubscribe = (input: Readonly) => Promise; export declare const createUnsubscribe: (instance: Readonly) => Unsubscribe; //# sourceMappingURL=unsubscribe.d.ts.map