export declare const verifyPurchaseHistoryStep: import("@medusajs/framework/workflows-sdk").StepFunction<{
    customer_id: string;
    product_id: string;
    order_id?: string;
    order_item_id?: string;
}, {
    isVerified: boolean;
    order_id: any;
    order_item_id: any;
}>;
