import type { ValuesOf } from '../../Types/ValuesOf'; /** * `AllDayVisibility` - The visibility mode for all-day events in the Scheduler component. * * @public */ export declare const AllDayVisibility: { /** * `always` - Always visible. */ readonly Always: "always"; /** * `never` - Never visible. */ readonly Never: "never"; /** * `auto` - Automatically determine visibility based on the presence of all-day events. */ readonly Auto: "auto"; }; /** * @public */ export type AllDayVisibility = ValuesOf; //# sourceMappingURL=AllDayVisibility.d.ts.map