import React from 'react'; import type { DraftContent } from '../../index'; interface Props { initialState: DraftContent; isOpen: boolean; index: number; images: Record[]; onClose: () => void; dataHook: string; isMobile: boolean; backgroundColor: string; foregroundColor: string; container?: HTMLElement | (() => HTMLElement | null); } declare const ViewerModal: React.FC; export default ViewerModal; //# sourceMappingURL=FullscreenModal.d.ts.map