import React from 'react'; import { IconsType, PointsDetailClassesType } from '../types'; export declare type PointsDetailProps = { classes: PointsDetailClassesType; icons: IconsType; points: number; handlePointsApplied: () => void; removePoints: (e: React.MouseEvent) => void; handlePopUp: (isActive: boolean) => void; }; declare const PointsDetail: { ({ classes, points, icons, handlePointsApplied, removePoints, handlePopUp, }: PointsDetailProps): 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; }; }; points: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; handlePointsApplied: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; removePoints: { 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 PointsDetail;