import { PropertyType } from '@cuba-platform/rest'; import { Moment } from 'moment'; export declare const DEFAULT_DATE_FORMAT = "YYYY-MM-DD"; export declare const DEFAULT_TIME_FORMAT = "HH:mm:ss"; export declare const DEFAULT_DATE_TIME_DATA_TRANSFER_FORMAT = "YYYY-MM-DD HH:mm:ss.SSS"; export declare const DEFAULT_DATE_TIME_DISPLAY_FORMAT = "YYYY-MM-DD HH:mm:ss"; export declare const OFFSET_DATE_TIME_DATE_TRANSFER_FORMAT = "YYYY-MM-DD HH:mm:ss.SSS ZZ"; export declare const OFFSET_DATE_TIME_DISPLAY_FORMAT = "YYYY-MM-DD HH:mm:ss"; export declare const OFFSET_TIME_DATA_TRANSFER_FORMAT = "HH:mm:ss ZZ"; export declare const OFFSET_TIME_DISPLAY_FORMAT = "HH:mm:ss"; export declare const defaultDataTransferFormats: Partial>; export declare const defaultDisplayFormats: Partial>; export declare function getDataTransferFormat(type: PropertyType): string | undefined; export declare function applyDataTransferFormat(value: Moment, type: PropertyType): string; export declare function getDisplayFormat(type: PropertyType): string | undefined; export declare function applyDisplayFormat(value: Moment, type: PropertyType): string;