import type { Interval } from "../_lib/types"; export interface Options { step?: number; } export default function eachDayOfInterval(interval: Interval, options?: Options): string[];