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