import { Iany } from '@cpmech/basic';
import { IPrimaryKey } from '../types';
export interface IGetTItem {
    table: string;
    primaryKey: IPrimaryKey;
}
export declare const getT: (items: IGetTItem[]) => Promise<Iany[]>;
