import { HuntStepActionService } from '../hunt_step_action.service';
import { Create_hunt_step_actionParams } from 'src/utils/types';
import { Update_hunt_step_actionDto } from '../dto/update_hunt_step_action.dto';
export declare class HuntStepActionController {
    private hunt_step_actionService;
    constructor(hunt_step_actionService: HuntStepActionService);
    gethunt_step_actions(): Promise<import("../../typeorm/hunt_step_action").hunt_step_action[]>;
    createhunt_step_action(createhunt_step_actionDto: Create_hunt_step_actionParams): Promise<import("../../typeorm/hunt_step_action").hunt_step_action[]>;
    updatehunt_step_actionById(id: number, updatehunt_step_actionDto: Update_hunt_step_actionDto): Promise<void>;
    deletehunt_step_actionById(id: number): Promise<void>;
}
