import { DataSource } from 'typeorm';
export declare class BillingFilterService {
    private readonly connection;
    constructor(connection: DataSource);
    findAll(date: string, fromDate: string, todate: string, patient_id: number, payment_method: string): Promise<any>;
}
