import { DateAdapter } from "chart.js"; //#region src/index.d.ts interface AdapterOptions { locale?: string; timeZone?: string; } interface FormatContext { locale?: string; timeZone: string; } type FormatValue = string | Intl.DateTimeFormatOptions | ((timestamp: number, context: FormatContext) => string); declare const adapter: DateAdapter; //#endregion export { AdapterOptions, FormatContext, FormatValue, adapter as default }; //# sourceMappingURL=index.d.mts.map