import type { FunctionMemberPriceResult, UserProfile } from '../BizProductProvider'; import type { VariantCoupon, ProductVariant } from '../types/product'; interface DiscountEnableResult { showMemberDiscount: boolean; showCommonCoupon: boolean; } interface DiscountEnableParams { profile?: UserProfile; variant: ProductVariant; memberFunctionResult?: FunctionMemberPriceResult; coupon?: VariantCoupon; } export declare const useDiscountEnable: ({ profile, variant, memberFunctionResult, coupon, }: DiscountEnableParams) => DiscountEnableResult; export {};