interface SendUpdateNotificationsOptions { appId: string; apikey?: string; channels?: string[]; silent?: boolean; verbose?: boolean; } interface UpdateCheckResponse { queued?: boolean; campaignId?: string; queuedBuckets?: number; } export declare function sendUpdateNotificationsForChannels(options: SendUpdateNotificationsOptions): Promise; export {};