import { PhpAppointmentReportService } from './php-appointment-report.service';
import { CreatePhpAppointmentReportDto } from './dto/create-php-appointment-report.dto';
import { UpdatePhpAppointmentReportDto } from './dto/update-php-appointment-report.dto';
export declare class PhpAppointmentReportController {
    private readonly phpAppointmentReportService;
    constructor(phpAppointmentReportService: PhpAppointmentReportService);
    create(createPhpAppointmentReportDto: CreatePhpAppointmentReportDto, limit: number, page: number, search: string): Promise<{
        status_code: string;
        status: string;
        message: string;
        data?: undefined;
        total?: undefined;
    } | {
        status_code: string;
        status: string;
        message: string;
        data: import("./dto/create-php-appointment-report.dto").PhpAppointmentReportResponseDto[];
        total: number;
    }>;
    findAll(): string;
    findOne(id: string): string;
    update(id: string, updatePhpAppointmentReportDto: UpdatePhpAppointmentReportDto): string;
    remove(id: string): string;
}
