import { ValueTransformer } from "typeorm"; export declare class DateTransformer implements ValueTransformer { to(value: Date): string; from(value: string): Date; }