import type { Currency } from './currency'; export interface GLAccount { activated?: boolean; allowManualJournalEntries?: boolean; balance?: number; creationDate?: string; currency?: Currency; description?: string; encodedKey?: string; glCode?: string; lastModifiedDate?: string; migrationEventKey?: string; name?: string; stripTrailingZeros?: boolean; type?: GLAccountTypeEnum; usage?: GLAccountUsageEnum; } export declare const GLAccountTypeEnum: { readonly Asset: "ASSET"; readonly Liability: "LIABILITY"; readonly Equity: "EQUITY"; readonly Income: "INCOME"; readonly Expense: "EXPENSE"; }; export type GLAccountTypeEnum = (typeof GLAccountTypeEnum)[keyof typeof GLAccountTypeEnum]; export declare const GLAccountUsageEnum: { readonly Detail: "DETAIL"; readonly Header: "HEADER"; }; export type GLAccountUsageEnum = (typeof GLAccountUsageEnum)[keyof typeof GLAccountUsageEnum];