/** * * `ASSET` - ASSET * * `EQUITY` - EQUITY * * `EXPENSE` - EXPENSE * * `LIABILITY` - LIABILITY * * `REVENUE` - REVENUE */ export declare const ClassificationEnum: { readonly Asset: "ASSET"; readonly Equity: "EQUITY"; readonly Expense: "EXPENSE"; readonly Liability: "LIABILITY"; readonly Revenue: "REVENUE"; }; export type ClassificationEnum = (typeof ClassificationEnum)[keyof typeof ClassificationEnum];