export declare const timestamptz: { to: (value: string | string[]) => any; from: (value: Date | Date[]) => any; }; export declare const json: { to: (value: any) => string; from: (value: string) => any; }; export declare const string: { to: (value: string[]) => string; from: (value: string) => string[]; }; export declare const numberarray: { to(val: number[]): string; from(val: string): any; }; export declare const timestamptzNotDefalut: { to: (value: string | string[] | null) => any[] | Date | null; from: (value: Date | Date[] | null) => number | any[] | ""; };