/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * @hidden */ export declare const DEFAULT_FORMAT = "d"; /** * @hidden */ export declare const DEFAULT_FORMAT_PLACEHOLDER = "wide"; /** * @hidden */ export declare const padZero: (length: number) => string; /** * @hidden */ export declare const approximateStringMatching: (oldTextOrigin: string, oldFormat: string, newTextOrigin: string, selectionStart: number) => any[]; /** * @hidden */ export declare const dateSymbolMap: (map: any, part: any) => Function; /** * @hidden */ export declare const isInRange: (candidate: Date | null, min: Date, max: Date) => boolean;