/** * DevExpress Analytics (serializer\_date.utiles.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ export declare function isDateType(type: string): boolean; export declare function _convertLocalDateToUTC(localDate: Date): Date; export declare function serializeDate(date: Date, delimiter?: string, type?: string): string; export declare function serializeParameterDate(date: Date, type: string): string; export declare function serializeParameterDateUTC(date: Date, type: string): string | Date; export declare function parseTime(time: string | Date): Date; export declare function deserializeDate(dateTime: string): Date;