import { dateFormats } from './DateFormats'; declare type Config = { editor?: { showClearButton?: boolean; }; number: { delimitter: ',' | '.'; thousandSeparator?: string; decimalPlaces?: number; }; date: { format: keyof typeof dateFormats; }; time: { clockFormat: 12 | 24; }; i18n: { calendar: { months: string[]; monthsShort: string[]; days: string[]; daysShort: string[]; today: string; clear: string; prev: string; next: string; }; }; }; export declare function getGlobalConfig(): Config; export {}; //# sourceMappingURL=Global.d.ts.map