import { ExpensesClassificationType } from './ExpensesClassification';
import { IncomeClassificationType } from './IncomeClassification';
export declare class InvoiceSummaryType {
    /** Σύνολο Καθαρής Αξίας */
    totalNetValue: number;
    /** Σύνολο ΦΠΑ  */
    totalVatAmount: number;
    /** Σύνολο Παρακρατήσεων Φόρων */
    totalWithheldAmount: number;
    /** Σύνολο Τελών  */
    totalFeesAmount: number;
    /** Σύνολο Χαρτοσήμου  */
    totalStampDutyAmount: number;
    /** Σύνολο Λοιπών Φόρων */
    totalOtherTaxesAmount: number;
    /** Σύνολο Κρατήσεων */
    totalDeductionsAmount: number;
    /** Συνολική Αξία */
    totalGrossValue: number;
    /** Χαρακτηρισμοί Εσόδων */
    incomeClassification?: IncomeClassificationType[];
    /** Χαρακτηρισμοί Εξόδων */
    expensesClassification?: ExpensesClassificationType[];
    constructor(props?: InvoiceSummaryType);
}
