UNPKG

@camtom/nyx-design-system

Version:

Nyx Design System - Sistema de diseño profesional para React con TypeScript, componentes accesibles y documentación completa

16 lines 484 B
import React from 'react'; interface ImageLightboxProps { isOpen: boolean; images: string[]; currentIndex: number; onClose: () => void; onPrevious: () => void; onNext: () => void; onImageSelect: (index: number) => void; onUploadImages?: (files: File[]) => Promise<void>; isUploading?: boolean; showUploadButton?: boolean; } export declare const ImageLightbox: React.FC<ImageLightboxProps>; export {}; //# sourceMappingURL=ImageLightbox.d.ts.map