import { Entity, Table } from "@webiny/db-dynamodb/toolbox";
import { Attributes } from "../types";
export interface CreateEntryElasticsearchEntityParams {
    table: Table<string, string, string>;
    entityName: string;
    attributes: Attributes;
}
export declare const createEntryElasticsearchEntity: (params: CreateEntryElasticsearchEntityParams) => Entity<any>;
