import { PriceByPeriod } from '../domain/price-by-period'; export declare type PriceAmountByPeriod = { period: string; amount: number; amount_with_tax_and_vat: number; amount_with_tax_and_reduced_vat: number; }; export declare const priceDefault: { amount: number; amountWithTaxAndVat: number; amountWithTaxAndReducedVat: number; }; export declare function parseToPriceByPeriod(amountByPeriod: PriceAmountByPeriod[]): PriceByPeriod;