import { SchedulerProcessedDate, TemporalSupportedObject } from "../models/index.mjs"; import { TemporalAdapter } from "../base-ui-copy/types/index.mjs"; export declare function getDayList(parameters: GetDaytListParameters): GetDaytListReturnValue; export interface GetDaytListParameters { /** * The adapter used to manipulate the date. */ adapter: TemporalAdapter; /** * The start of the range to generate the day list from. */ start: TemporalSupportedObject; /** * The end of the range to generate the day list from. */ end: TemporalSupportedObject; /** * Whether to exclude weekends (Saturday and Sunday) from the returned days. * @default false */ excludeWeekends?: boolean; } export type GetDaytListReturnValue = SchedulerProcessedDate[];