export declare type WebhookEvent = string; export declare type WebhookData = { url: string; secret: string; event: WebhookEvent; }; export declare function setWebhookAsync(experienceName: string, { url, secret, event }: WebhookData): Promise<any>; export declare function getWebhooksAsync(experienceName: string): Promise<any>; export declare function deleteWebhooksAsync(experienceName: string, event: WebhookEvent | undefined): Promise<any>;