import { TenantAwareDBClient } from '../../app-providers/tenant-db-client.js';
import { IGetNormalizedRevenueRecordsParams } from '../types.js';
export declare class AnnualRevenueReportProvider {
    private db;
    constructor(db: TenantAwareDBClient);
    getNormalizedRevenueRecords(params: IGetNormalizedRevenueRecordsParams): Promise<import("../types.js").IGetNormalizedRevenueRecordsResult[]>;
}
