///
import { DeveloperPlatformClient } from '../../utilities/developer-platform-client.js';
import { Writable } from 'stream';
interface SendUninstallWebhookToAppServerOptions {
stdout: Writable;
developerPlatformClient: DeveloperPlatformClient;
storeFqdn: string;
address: string;
sharedSecret: string;
}
export declare function sendUninstallWebhookToAppServer(options: SendUninstallWebhookToAppServerOptions): Promise;
export {};