import React, { FC } from "react"; interface GenericModalSchema { modalState: boolean; handler: () => void; children: React.ReactNode; showFooter: boolean; footerNode?: React.ReactNode; height?: string; width?: string; noCloseButton?: boolean; backDrop?: boolean; backButton?: string; } declare const ProductDetailsModal: FC; export default ProductDetailsModal;