import { InternalOpdTimelineService } from './internal-opd-timeline.service';
import { InternalOpdTimeline } from './entities/internal-opd-timeline.entity';
export declare class InternalOpdTimelineController {
    private readonly internalOpdTimelineService;
    constructor(internalOpdTimelineService: InternalOpdTimelineService);
    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;
    }[]>;
}
