export interface BaseTCFUserDecision {
    /** Indicates if the user gave consent (true) or denied consent (false) */
    consent: boolean;
    /** The id of the purpose/vendor the consent decision belongs to */
    id: number;
}
