/** * Demo script for Profile and Webhook Management Tools * Demonstrates all available profile and webhook management functionality */ /** * Demo class to showcase Profile and Webhook Management Tools */ export declare class ProfileWebhookToolsDemo { private profileWebhookTools; private httpClient; constructor(evolutionUrl: string, apiKey: string); /** * Demonstrate all profile and webhook management tools */ runCompleteDemo(instanceName: string): Promise; /** * Demo API Information tool */ demoApiInformation(): Promise; /** * Demo profile management tools */ demoProfileManagement(instanceName: string): Promise; /** * Demo privacy settings tools */ demoPrivacySettings(instanceName: string): Promise; /** * Demo business profile tools */ demoBusinessProfile(instanceName: string): Promise; /** * Demo webhook management tools */ demoWebhookManagement(instanceName: string): Promise; /** * Demo webhook URL validation */ demoWebhookValidation(): Promise; /** * Get all available tools summary */ getToolsSummary(): void; } /** * Example usage of the demo */ declare function runDemo(): Promise; export { runDemo };