import { Iany } from '@cpmech/js2ts';
import { IPrimaryKey } from '../types';
export interface IUpdateTItem {
    table: string;
    primaryKey: IPrimaryKey;
    data: Iany;
    put?: boolean;
}
export declare const updateT: (items: IUpdateTItem[], returnItems?: boolean) => Promise<null | Iany[]>;
