import Customer from "../../entities/customer.js";
declare class CustomerCreateInput {
    userId: string;
    email: string;
    name: string;
}
/**
 * Create new customer
 */
declare const create: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, CustomerCreateInput, Record<string, any>, {
    entity: Customer;
}>;
export { create as default };
