import type * as TrophyApi from "../index";
/**
 * Response containing created points systems and any per-item issues.
 */
export interface CreatePointsSystemsResponse {
    /** Array of successfully created points systems. */
    created: TrophyApi.CreatedAdminPointsSystem[];
    /** Array of issues encountered during creation. */
    issues: TrophyApi.AdminIssue[];
}
