/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { Occurrence, Group, Range, Item, Slot } from '../models/index.js';
/** @hidden */
export declare const toItems: (occurrences: Occurrence[], { timezone }: any, { groups, ranges }: {
    groups: Group[];
    ranges: Range[];
}) => Item[];
/** @hidden */
export declare const inGroup: (occurrence: Occurrence, group: Group) => boolean;
/** @hidden */
export declare const inSlot: (occurrence: Occurrence, slot: Slot) => boolean;
/** @hidden */
export declare const inRange: (occurrence: Occurrence, range: Range) => boolean;
