import React from 'react'; import type { CustomModalProps, CustomModalRefProps } from './types'; export declare const customModalRef: React.RefObject; declare const CustomModal: ({ children, onClose, modalContainerStyle, handleStyle, handleComponent, }: CustomModalProps) => JSX.Element; export default CustomModal;