import React from 'react'; interface ModalStyleProps { overlayBackgroundColor?: string; zIndex?: number; boxShadowColor?: string; mainBackgroundColor?: string; width?: string; } export interface ModalProps { id?: string; className?: string; children?: React.ReactNode; bypassConfig?: { scroll?: boolean; focus?: boolean; }; isLargeImageModal?: boolean; isOpen: boolean; tabIndex?: 0 | -1; minHeight?: string; maxHeight?: string; height?: string; maxWidth?: string; width?: string | number; margin?: string; overflowY?: string; overflowX?: string; initialFocusRef?: React.RefObject; styleProps?: ModalStyleProps; onDismiss: () => void; } export declare function Modal({ id, bypassConfig, isOpen, children, className, tabIndex, onDismiss, margin, height, minHeight, maxHeight, maxWidth, width, overflowX, overflowY, styleProps, initialFocusRef, isLargeImageModal }: ModalProps): React.JSX.Element | null; export {}; //# sourceMappingURL=index.d.ts.map