import React from 'react'; interface IProps { id?: string; title: string; show: boolean; responsive?: boolean; width?: number; contentHeight?: number; titleHeightAuto?: boolean; autoHeight?: boolean; contentScrollableY?: boolean; actions: JSX.Element[]; showCloseButton?: boolean; handleClose?: (e: React.MouseEvent) => void; hideHeaderBoxShadow?: boolean; preventClickOnParent?: boolean; showHeaderBorder?: boolean; children?: React.ReactNode; } export declare const ResponsiveModal: ({ title, show, responsive, showCloseButton, handleClose, id, actions, width, contentHeight, titleHeightAuto, autoHeight, contentScrollableY, hideHeaderBoxShadow, preventClickOnParent, showHeaderBorder, children }: IProps) => React.JSX.Element | null; export {}; //# sourceMappingURL=ResponsiveModal.d.ts.map