import type { GenericRecord } from "@webiny/api/types.js"; import type { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb/index.js"; interface CreateKeysParams { scopedKey: string; } export declare class KeyValueStoreDynamoTable { private readonly entity; constructor(documentClient: DynamoDBDocument); createKeys({ scopedKey }: CreateKeysParams): { PK: string; SK: string; }; getEntity(): import("@webiny/db-dynamodb").IEntity>; } export {};