import { ValueByPeriod } from '../domain/value-by-period'; export declare type AmountByPeriod = { period: string; amount: number; }; export declare function parseToValueByPeriod(amountByPeriod: AmountByPeriod[]): ValueByPeriod;