import { TemporalPeriod } from "../../types"; /** * Generate all possible temporal period combinations for a given temporal period. * If direction is not provided, both "last" and "next" directions are used. * If count is not provided, the count defaults to 1. * If unit is not provided, both "day", "week", and "month" are used in plural or singular form depending on the count. * * @example * createTemporalPeriodCombinations({ direction: "last", count: 2, unit: "days" }); // [{ direction: "last", count: 2, unit: "days" }] * createTemporalPeriodCombinations({ direction: "next", count: 1 }); // [{ direction: "next", count: 1, unit: "day" }] */ export declare const createTemporalPeriodCombinations: ({ direction, count, }: Partial) => Array;