import React from 'react'; declare type LightboxType = { aria?: { [key: string]: string; }; children: React.ReactNode[] | React.ReactNode | string; className?: string; currentPhotoIndex?: number; data?: { [key: string]: string | number; }; description?: string | any; id?: string; photos: []; initialPhoto?: number; onChange?: (index: number) => {}; onClickRight?: () => void; onClose?: () => void; icon: string; navRight?: string; trigger?: string; title?: string | any; }; declare const Lightbox: { (props: LightboxType): React.ReactNode; Header: (props: { aria?: { [key: string]: string; }; children?: React.ReactNode | React.ReactNode[]; className?: string; closeable?: boolean; data?: { [key: string]: string | number; }; icon?: string; id?: string; onClickRight?: () => void; onClose?: () => void; text?: string; navRight?: string; title?: string; } & import("../utilities/globalProps").GlobalProps) => React.ReactElement>; }; export default Lightbox;