/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the navigator hint content function arguments.
 */
export interface NavigatorHintContentArgs {
    /**
     * Specifies the lower boundary of the selected range.
     */
    from?: Date;
    /**
     * Specifies the upper boundary of the selected range.
     */
    to?: Date;
}
