import { ITransactionAnalysis } from "../../../interfaces/insights";
import { PlainObject } from "../../../types";
export default class TransactionAnalysis implements ITransactionAnalysis {
    private _accounts;
    private _description;
    private _average;
    private _quantity;
    private _amount;
    constructor({ accounts, description, average, quantity, amount, }: ITransactionAnalysis);
    get average(): number;
    get description(): string;
    get amount(): number;
    get quantity(): number;
    get accounts(): number[];
    get plainObject(): PlainObject;
}
