import { DataSource } from 'typeorm';
import { IpdTreatmentHistory } from './entities/ipd_treatment_history.entity';
import { CountDto } from './dto/ipd_treatment_history.dto';
export declare class IpdTreatmentHistoryService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    findTreatmentHistorySearch(id: number, search: string): Promise<IpdTreatmentHistory | null>;
    findIpdTreatmentHistory(id: number, search: string, limit: number, page: number): Promise<CountDto>;
    findIPDTreatmentHistory(id: number, search: string, limit: number, page: number): Promise<CountDto>;
}
