import React from 'react';
import type { Attachment } from 'stream-chat';
export type ModalGalleryProps = {
    /** The images for the Carousel component */
    images: Attachment[];
    /** The index for the component */
    index?: number;
};
export declare const ModalGallery: (props: ModalGalleryProps) => React.JSX.Element;
