import { Request, Response, NextFunction } from 'express';
import { StaffCategoryService } from '../services/staffCategory.service';
export declare class StaffCategoryController {
    private staffCategoryService;
    constructor(staffCategoryService: StaffCategoryService);
    create: (req: Request, res: Response, next: NextFunction) => Promise<any>;
    getById: (req: Request, res: Response, next: NextFunction) => Promise<any>;
    list: (req: Request, res: Response, next: NextFunction) => Promise<any>;
    update: (req: Request, res: Response, next: NextFunction) => Promise<any>;
    remove: (req: Request, res: Response, next: NextFunction) => Promise<any>;
}
//# sourceMappingURL=staffCategory.controller.d.ts.map