import { Subjects } from '../subjects'; import { Tenant } from '../../types/tenant'; export interface CreativeVideoReadyEvent { subject: Subjects.CreativeVideoReady; data: { tenant: Tenant; videoUrl: string; caption: string; }; }