import type { StreamInstance } from '../instance.js'; import type { Topic } from '../types.js'; export interface UnsubscribeAllOutput { unsubscribed: Topic[]; } export type UnsubscribeAll = () => Promise; export declare const createUnsubscribeAll: (instance: Readonly) => UnsubscribeAll; //# sourceMappingURL=unsubscribe-all.d.ts.map