import type { Reply, ScopeCreepFlag, Update } from './types.js'; export interface NotifyArgs { update: Update; reply: Reply; flags: ScopeCreepFlag[]; viewerUrl: string; } export declare function notifyDeveloper(args: NotifyArgs): Promise<{ ok: boolean; reason?: string; }>;