import { MessagingSubscriber } from './subscriber';
import { MessagingTopicType } from './topicType';
/**
 * Data necessary for deleting a subscriber.
 */
export type MessagingSubscriberToDelete = MessagingSubscriber & {
    tenant: string;
    namespace: string;
    topic: string;
    type: MessagingTopicType;
};
//# sourceMappingURL=subscriberToDelete.d.ts.map