import { DataSource } from 'typeorm';
import { PathologyGenerateBill } from './entities/pathology_generate_bill.entity';
export declare class PathologyGenerateBillService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    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<{
        [key: string]: any;
    }[]>;
    deletePathoPayment(id: number, Hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    removepathoreport(id: number, hospital_id: number): Promise<{
        [key: string]: any;
    }[]>;
    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;
    }>;
}
