import type { ValuesOf } from '../../Types/ValuesOf'; /** * `RangeSelectionMode` - The selection behavior for the calendar. * * @public */ export declare const RangeSelectionMode: { /** * `none` - Indicates that no items can be selected. */ readonly None: "none"; /** * `single` - Indicates that only one item at a time can be selected. */ readonly Single: "single"; /** * `multiple` - Indicates that more than one item at a time can be selected. */ readonly Multiple: "multiple"; /** * `range` - Indicates that a range of items can be selected. */ readonly Range: "range"; }; /** * @public */ export type RangeSelectionMode = ValuesOf; //# sourceMappingURL=RangeSelectionMode.d.ts.map