import React from 'react'; interface IProps { title?: string; actions: JSX.Element[]; show: boolean; handleClose?: () => void; className?: string; children: React.ReactNode; } export declare const Modal: ({ title, actions, show, handleClose, className, children }: IProps) => React.JSX.Element | null; export {}; //# sourceMappingURL=Modal.d.ts.map