import type { Entity } from "../toolbox.js"; export interface GetRecordParamsKeys { PK: string; SK: string; } export interface GetRecordParams { entity: Entity; keys: GetRecordParamsKeys; } /** * Gets a single record from the DynamoDB table. * Returns either record or null. * * Be aware to wrap in try/catch to avoid the error killing your app. * * @throws */ export declare const get: (params: GetRecordParams) => Promise; export declare const getClean: (params: GetRecordParams) => Promise;