import { DataSource } from "typeorm";
import { InternalOpdTimeline } from "./entities/internal-opd-timeline.entity";
export declare class InternalOpdTimelineService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(opd_timeline: InternalOpdTimeline): Promise<{
        data: {
            "id ": any;
            status: string;
            messege: string;
            inserted_data: any;
        };
    }[]>;
    findAll(patient_id: number): Promise<any>;
    update(id: string, opd_timeline: InternalOpdTimeline): Promise<{
        "data ": {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    remove(id: string, hosId: number): Promise<{
        status: string;
        message: string;
    }[]>;
}
