import Product from "../../entities/product.js";
declare class ProductCreateInput {
    entityId: string;
    name: string;
    userId: string;
    description?: string;
    images?: string[];
}
/**
 * Create new product
 */
declare const create: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, ProductCreateInput, Record<string, any>, {
    entity: Product;
}>;
export { create as default };
