import type { ConsentSubscription } from './ConsentSubscription'; /** * @type ConsentSubscriptionResponse: Collection wrapper of consent subscriptions * * @property data: * */ export type ConsentSubscriptionResponse = { data: Array; } & { [key: string]: any; };