import { PgDateType } from '../types.js'; export declare function serialiseDate(v: Date, pgType: PgDateType): string; export declare function deserialiseDate(v: string, pgType: PgDateType): Date;