/**
 * An array of Strings. Note: node-postgres natively supports this type on read
 * path, but on write path, we have to stringify by ourselves.
 */
export declare function StringArrayType<T extends string | null = string | null>(): {
    dbValueToJs: (dbValue: T[]) => T[];
    stringify: (jsValue: T[]) => string;
    parse: (str: string) => T[];
};
//# sourceMappingURL=StringArrayType.d.ts.map