import React from 'react'; interface GenericModalSchema { modalState: boolean; handler: () => void; children: React.ReactNode; showFooter: boolean; footerNode?: React.ReactNode; height?: string; width?: string; noCloseButton?: boolean; backDrop?: boolean; fixedWidth?: string; backgroundColor?: string; bodyPadding?: string; id?: string; isMobile?: boolean; } declare const GenericModal: ({ modalState, handler, showFooter, footerNode, children, width, height, noCloseButton, backDrop, fixedWidth, backgroundColor, bodyPadding, id, isMobile }: GenericModalSchema) => JSX.Element; export default GenericModal;