/** * config.ts * @createdOn:24-Nov-2017 * @author:SmartChartsNXT * @description:This will be the Global default configuration for all charts. */ declare const _default: { theme: { fontFamily: string; fontColorLight: string; fontColorMedium: string; fontColorDark: string; fontColorHighlight: string; fontSizeSmall: number; fontSizeMedium: number; fontSizeLarge: number; bgColorLight: string; bgColorMedium: string; bgColorDark: string; }; formatting: { parseDateFormat: string; displayDateFormat: string; }; }; export default _default;