import { DBProvider } from '../../app-providers/db.provider.js';
import type { IGetChargesApprovalStatusParams } from '../types.js';
export declare class AccountantApprovalProvider {
    private dbProvider;
    constructor(dbProvider: DBProvider);
    getChargesApprovalStatus(params: IGetChargesApprovalStatusParams): Promise<import("../types.js").IGetChargesApprovalStatusResult[]>;
}
