/**
 * Base interface for common API response fields, if any.
 * Not strictly used by current models but good for future.
 */
export interface BaseResponse {
}
/**
 * Structure for items in featuresList used in Checkout and Subscription updates.
 */
export interface FeatureListItem {
    identifier: string;
    quantity: number;
}
//# sourceMappingURL=common.d.ts.map