/**
 * A pair for escapeComposite(), but works with a list of identifiers (e.g. list
 * of unique key fields), not with values.
 *
 * - fields=["some_id"], table="tbl"  => "tbl.some_id"
 * - fields=["f1", "f2"], table="tbl" => "(tbl.f1,tbl.f2)"
 */
export declare function escapeIdentComposite(fields: readonly string[], table?: string): string;
//# sourceMappingURL=escapeIdentComposite.d.ts.map