import type { NotificationChannel } from './NotificationChannel';
export type CreateSubscriptionDto = {
    identifier: string;
    channel?: NotificationChannel;
    observable_address: string;
};
