import type * as TrophyApi from "../index";
/**
 * Response containing updated boosts and any issues encountered.
 */
export interface PatchPointsBoostsResponse {
    /** Array of successfully updated boosts. */
    updated: TrophyApi.AdminPointsBoost[];
    /** Array of issues encountered during boost updates. */
    issues: TrophyApi.AdminIssue[];
}
