import { type ITable } from "@webiny/db-dynamodb";
import type { IEntryEntity } from "../definitions/types.js";
export interface CreateEntryEntityParams {
    table: ITable;
    entityName: string;
}
export declare const createEntryEntity: (params: CreateEntryEntityParams) => IEntryEntity;
