export type CalculatedCompareBalance = 'this_period_vs_last_period' | 'this_period_vs_last_period_percent' | 'this_period_vs_same_period_last_year' | 'this_period_vs_same_period_last_year_percent'; export type CalculatedTotalBalance = 'year_to_date_total' | 'year_to_date_last_year_total' | 'rolling_12_months' | 'rolling_12_months_average' | 'free_range_total'; export type CalculatedBalance = CalculatedCompareBalance | CalculatedTotalBalance; export type COABalanceType = 'default' | 'default_with_percent' | 'default_with_null_balance' | 'same_period_last_year' | 'period_total' | CalculatedBalance; export declare const toCOABalanceType: (v: string) => COABalanceType; export declare const toCOABalanceTypeStrict: (v: string) => COABalanceType | undefined; export declare const isCalculatedBalanceType: (id: string) => id is CalculatedBalance; /** Removes compare-mode balance types (horizontal P&L-by-class does not use them). */ export declare function stripCompareAdditionalBalanceTypes(balances: readonly COABalanceType[]): COABalanceType[];