import { DataSource } from 'typeorm';
export declare class EmrOpdFilterService {
    private readonly connection;
    constructor(connection: DataSource);
    findAll(fromDate: string, toDate: string, doctorId: number, gender: string, status: string): Promise<any>;
}
