import { CreateHuntUserProgressParams, UpdateHuntUserProgressParams } from 'src/utils/types';
import { HuntUserProgressService } from '../hunt_user_progress.service';
export declare class HuntUserProgressController {
    private HuntUserProgresservice;
    constructor(HuntUserProgresservice: HuntUserProgressService);
    getHuntUserProgress(): Promise<import("../../typeorm/hunt_user_progress").hunt_user_progress[]>;
    createHuntUserProgress(createHuntUserProgressDto: CreateHuntUserProgressParams): Promise<import("../../typeorm/hunt_user_progress").hunt_user_progress>;
    updateHuntUserProgressById(id: number, updateHuntUserProgressDto: UpdateHuntUserProgressParams): Promise<void>;
    deleteHuntUserProgressById(id: number): Promise<void>;
}
