import { Entity } from "@webiny/db-dynamodb/toolbox"; import { ITable } from "./types"; interface IParams { table: ITable; } export interface IEntityAttributes { PK: string; SK: string; GSI1_PK: string; GSI1_SK: string; GSI2_PK: string; GSI2_SK: string; GSI3_PK: string; GSI3_SK: string; GSI4_PK: string; GSI4_SK: string; id: string; tenant: string; locale: string; source: string; type: string; data: string; } export declare const createEntity: (params: IParams) => Entity; export {};