import { OnInit } from '@angular/core'; import { FinancialManagementService } from '../_services/financial-management.service'; import { MessageService, PrimeNGConfig } from 'primeng/api'; import { DatePipe } from '@angular/common'; import { FinancialChartAccountOptions } from '../_models/financial-account.model'; import { FinancialChartService } from '../_services/financial-chart.service'; import * as i0 from "@angular/core"; export declare class FinancialSettingsComponent implements OnInit { private readonly financialService; private readonly financialChartService; private messageService; private primengConfig; private datePipe; settings: any; periods: { name: string; }[]; intervalTypes: { name: string; id: string; }[]; isLoading: boolean; defaultCurrency: { name: string; }[]; taxType: { name: string; }[]; chartOfAccounts: FinancialChartAccountOptions[]; accounts: FinancialChartAccountOptions[]; showContingencyAccounts: boolean; showRentPaymentAccounts: boolean; showRentIncomeAccounts: boolean; constructor(financialService: FinancialManagementService, financialChartService: FinancialChartService, messageService: MessageService, primengConfig: PrimeNGConfig, datePipe: DatePipe); ngOnInit(): void; initForm(): void; onChange(): void; onSubmit(): void; getDate(date: string): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }