import { AttributeMap } from "aws-sdk/clients/dynamodb"; import { PartitionAndSortKey } from "../keys"; import { TaggedModel } from "../types"; import { BaseParams } from "./BaseParams"; export interface GetItemParams extends BaseParams { key: PartitionAndSortKey; consistentRead?: boolean; } export interface GetItemResult { item?: AttributeMap; } export declare function getItem(params: GetItemParams): Promise; //# sourceMappingURL=getItem.d.ts.map