import type { Currency } from './currency'; export interface GLAccountInput { allowManualJournalEntries?: boolean; currency?: Currency; description?: string; glCode: string; name: string; stripTrailingZeros?: boolean; type: GLAccountInputTypeEnum; usage: GLAccountInputUsageEnum; } export declare const GLAccountInputTypeEnum: { readonly Asset: "ASSET"; readonly Liability: "LIABILITY"; readonly Equity: "EQUITY"; readonly Income: "INCOME"; readonly Expense: "EXPENSE"; }; export type GLAccountInputTypeEnum = (typeof GLAccountInputTypeEnum)[keyof typeof GLAccountInputTypeEnum]; export declare const GLAccountInputUsageEnum: { readonly Detail: "DETAIL"; readonly Header: "HEADER"; }; export type GLAccountInputUsageEnum = (typeof GLAccountInputUsageEnum)[keyof typeof GLAccountInputUsageEnum];