import type { PGParser } from '../parsers'; /** Parse a `bigint` */ export declare const parseBigint: PGParser; /** Parse some JSON */ export declare const parseJson: PGParser; /** Parse a `boolean` */ export declare const parseBool: PGParser; /** Parse a `string` (identity transformation) */ export declare const parseString: PGParser; /** Parse anything into `null` (normally used only for `void` types) */ export declare const parseVoid: PGParser; /** Parse a PostgreSQL timestamp _without_ time zone */ export declare const parseTimestamp: PGParser; /** Parse a PostgreSQL timestamp _with_ time zone */ export declare const parseTimestampTz: PGParser;