import { PhpExpenseReportService } from './php-expense-report.service';
import { CreatePhpExpenseReportDto } from './dto/create-php-expense-report.dto';
import { UpdatePhpExpenseReportDto } from './dto/update-php-expense-report.dto';
export declare class PhpExpenseReportController {
    private readonly phpExpenseReportService;
    constructor(phpExpenseReportService: PhpExpenseReportService);
    create(createPhpExpenseReportDto: CreatePhpExpenseReportDto, limit: number, page: number, search: string): Promise<{
        status_code: string;
        status: string;
        message: string;
        data: any;
        total: any;
    } | {
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    }>;
    findAll(): string;
    findOne(id: string): string;
    update(id: string, updatePhpExpenseReportDto: UpdatePhpExpenseReportDto): string;
    remove(id: string): string;
}
