/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { DateFieldNameOptions, DateFormatOptions, DateFormatPart, NumberFormatOptions } from '@progress/kendo-intl'; import { IntlService } from '@progress/kendo-react-intl'; /** * @hidden */ export declare class DateInputIntl { private service; format: (format: string, ...values: any[]) => string; toString: (value: any, format: any, localeId?: string) => string; formatDate: (value: Date, format?: string | DateFormatOptions, localeId?: string) => string; parseDate: (value: string, format?: string | DateFormatOptions | string[] | DateFormatOptions[], localeId?: string) => Date; parseNumber: (value: string, format?: string | NumberFormatOptions, localeId?: string) => number; formatNumber: (value: number, format: string | NumberFormatOptions, localeId?: string) => string; splitDateFormat: (format: string | DateFormatOptions, localeId?: string) => DateFormatPart[]; numberSymbols: (localeId?: string) => void; firstDay: (localeId?: string) => number; weekendRange: (localeId?: string) => any; dateFieldName: (options: DateFieldNameOptions, localeId?: string) => string; dateFormatNames: (localeId: any, options: any) => any; cldr: any; locale: string; constructor(service: IntlService); }