declare class CreateCheckoutInput {
    userId: string;
    priceId: string;
    successUrl: string;
    cancelUrl: string;
    isAllowPromoCode?: boolean;
}
/**
 * Creates checkout session and return redirect url to stripe checkout
 */
declare const createCheckout: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, CreateCheckoutInput, Record<string, any>, {
    redirectUrl: string | null;
}>;
export { createCheckout as default };
