import type { SubscriptionChannels } from "prostgles-types"; import type { VoidFunction } from "../SchemaWatch/SchemaWatch"; import type { PubSubManager, SubscriptionParams } from "./PubSubManager"; import type { AddTriggerParams } from "./addTrigger"; export type AddSubscriptionParams = SubscriptionParams & Pick; type AddSubResult = SubscriptionChannels & { sendFirstData: VoidFunction | undefined; }; export declare function addSub(this: PubSubManager, subscriptionParams: Omit): Promise; export {}; //# sourceMappingURL=addSub.d.ts.map