/**
 * Financial Entity Types (Nouns)
 *
 * Financial entities: Budget, Revenue, Expense, Investment, FinancialPeriod.
 *
 * @packageDocumentation
 */
import type { Noun } from 'ai-database';
/**
 * Budget entity
 *
 * Represents a budget allocation.
 */
export declare const Budget: Noun;
/**
 * Revenue entity
 *
 * Represents a revenue record.
 */
export declare const Revenue: Noun;
/**
 * Expense entity
 *
 * Represents an expense record.
 */
export declare const Expense: Noun;
/**
 * Investment entity
 *
 * Represents a funding or investment round.
 */
export declare const Investment: Noun;
/**
 * FinancialPeriod entity
 *
 * Represents a financial reporting period.
 */
export declare const FinancialPeriod: Noun;
/**
 * Forecast entity
 *
 * Represents a financial forecast.
 */
export declare const Forecast: Noun;
export declare const FinancialEntities: {
    Budget: Noun;
    Revenue: Noun;
    Expense: Noun;
    Investment: Noun;
    FinancialPeriod: Noun;
    Forecast: Noun;
};
export declare const FinancialCategories: {
    readonly planning: readonly ["Budget", "Forecast"];
    readonly transactions: readonly ["Revenue", "Expense"];
    readonly funding: readonly ["Investment"];
    readonly reporting: readonly ["FinancialPeriod"];
};
//# sourceMappingURL=financials.d.ts.map