/**
 * ```js
 * import { EventRepository } from '@amityco/ts-sdk'
 * const dispose = EventRepository.onEventDeleted(event => {
 *   // ...
 * })
 * ```
 *
 * Fired when a {@link Amity.Event} has been deleted
 *
 * @param callback The function to call when the event was fired
 * @returns an {@link Amity.Unsubscriber} function to stop listening
 *
 * @category Event Events
 */
export declare const onEventDeleted: (callback: Amity.Listener<Amity.InternalEvent>) => Amity.Unsubscriber;
//# sourceMappingURL=onEventDeleted.d.ts.map