/** * convert possible datetime value to MySQL required format 'yyyy-MM-dd hh:mm:ss[.S]' * * @param value */ export declare function adaptToMySQLDateTime(value: string | Date): string; export declare const PRE_CONVERSION_MAP: Map;