import { type Effect, type Event } from "effector"; type Subscription = () => void; interface SetupSubscriptionOptions { subscribe: Effect; setup: Event; teardown?: Event; name?: string; } export declare function setupSubscription({ subscribe, setup, teardown, name, }: SetupSubscriptionOptions): void; export {};