UNPKG

@iota-big3/layer-1-finance

Version:

Layer 1 Finance conventions for School OS - Budget patterns, billing automation, and financial workflows

36 lines 1.5 kB
/** * Layer 1 Finance - Comprehensive financial management conventions * * Philosophy: Automate financial operations to maximize resources for education * while ensuring equitable access and transparency. */ export * from './budget-conventions'; export * from './billing-conventions'; export * from './financial-aid-conventions'; export * from './expense-conventions'; export declare const financeConventions: { budget: import("./types").ConventionSet; billing: import("./types").ConventionSet; financialAid: import("./types").ConventionSet; expense: import("./types").ConventionSet; }; export { BudgetForecaster, BudgetApprovalWorkflow } from './budget-conventions'; export { PaymentProcessor, FeeStructureOptimizer, CollectionAutomation } from './billing-conventions'; export { NeedAssessmentEngine, AwardOptimizer, ScholarshipMatcher } from './financial-aid-conventions'; export { ExpenseApprovalEngine, CostOptimizer, VendorManager } from './expense-conventions'; export declare const totalFinancePhilosophyImpact: { total_time_saved: string; financial_accessibility: number; administrative_burden_reduced: number; educational_funding_optimized: number; teacher_financial_autonomy: number; }; export declare const financeMetrics: { conventions: number; algorithmsProvided: number; automationPoints: number; timeSavedWeekly: string; accessibilityImprovement: string; costOptimization: string; }; //# sourceMappingURL=index.d.ts.map