declare const _default: FormatService; export default _default; /** * The FormatService class provides utility methods for formatting dates, date-times, * and boolean values into user-friendly string representations. */ declare class FormatService { toLocaleDateString(datestr: any): string; formatDate(value: any): string; formatDateTime(value: any): string; formatBool(value: any): string; } //# sourceMappingURL=FormatService.d.ts.map