import { PhpIpdReportService } from './php-ipd-report.service';
import { CreatePhpIpdReportDto } from './dto/create-php-ipd-report.dto';
import { UpdatePhpIpdReportDto } from './dto/update-php-ipd-report.dto';
export declare class PhpIpdReportController {
    private readonly phpIpdReportService;
    constructor(phpIpdReportService: PhpIpdReportService);
    create(createPhpAppointmentReportDto: CreatePhpIpdReportDto, 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: any;
        total: any;
    }>;
    findAll(): string;
    findOne(id: string): string;
    update(id: string, updatePhpIpdReportDto: UpdatePhpIpdReportDto): string;
    remove(id: string): string;
}
