import type { PluginInput } from "@opencode-ai/plugin"; import type { SessionNotificationConfig } from "./types"; export declare function createSessionNotification(ctx: PluginInput, config?: SessionNotificationConfig): ({ event }: { event: { type: string; properties?: unknown; }; }) => Promise; export type { SessionNotificationConfig, DiscordConfig } from "./types";