import { PathologyGenerateBillService } from './pathology_generate_bill.service';
import { PathologyGenerateBill } from './entities/pathology_generate_bill.entity';
export declare class PathologyGenerateBillController {
    private readonly pathologyGenerateBillService;
    constructor(pathologyGenerateBillService: PathologyGenerateBillService);
    create(createPathologyGenerateBill: PathologyGenerateBill): Promise<{
        'data ': {
            status: string;
            messege: string;
            Pathology_bill_Values: any;
        };
    }[]>;
    createPathologyReport(createPathologyGenerateBill: PathologyGenerateBill[]): Promise<{
        status: string;
        message: string;
        data: any[];
    }>;
    AddPathologyPayment(createPathologyGenerateBill: PathologyGenerateBill): Promise<{
        'data ': {
            status: string;
            messege: string;
            Added_Payment_values: any;
        };
    }[]>;
    removePathologyBill(id: number, hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    deletePathoPayment(id: number, Hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    removepathoreport(id: number, hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
    updatePathologyBilling(id: number, createPathologyTest: PathologyGenerateBill): Promise<{
        'data ': {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    updatepathologyReport(createPathologyTest: PathologyGenerateBill[]): Promise<{
        status: string;
        message: string;
    }>;
    updateCollectedPerson(id: number, createPathologyTest: PathologyGenerateBill): Promise<{
        'data ': {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    updateApprovalByPerson(id: number, createPathologyTest: PathologyGenerateBill): Promise<{
        status: string;
        message: string;
        updated_values: any;
    }>;
}
