import React from 'react'; import { IconsType, CouponDetailClassesType } from '../types'; export declare type CouponDetailProps = { classes: CouponDetailClassesType; icons: IconsType; activeCoupon: string; handleVoucherApplied: () => void; removeCoupon: (e: React.MouseEvent) => void; handlePopUp: (isActive: boolean) => void; }; declare const CouponDetail: { ({ classes, activeCoupon, icons, handleVoucherApplied, removeCoupon, handlePopUp, }: CouponDetailProps): JSX.Element; displayName: string; __docgenInfo: { description: string; displayName: string; props: { classes: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; icons: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; activeCoupon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; handleVoucherApplied: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; removeCoupon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; handlePopUp: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default CouponDetail;