import { ValueTransformer } from 'typeorm'; /** * Decimal types are returned as strings (e.g. "20.00") by some DBs, e.g. MySQL & Postgres */ export declare class DecimalTransformer implements ValueTransformer { to(value: any): any; from(value: any): any; }