import Price from "../../entities/price.js";
declare class PriceCreateInput {
    productId: string;
    currency: string;
    userId: string;
    unitAmount: number;
}
/**
 * Create new price
 */
declare const create: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, PriceCreateInput, Record<string, any>, {
    entity: Price;
}>;
export { create as default };
