stream-chat-react
Version:
React components to create chat conversations or livestream style chat
10 lines • 618 B
TypeScript
import type { Attachment } from 'stream-chat';
import type { DefaultStreamChatGenerics } from '../../types/types';
export declare type ModalGalleryProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = {
/** The images for the Carousel component */
images: Attachment<StreamChatGenerics>[];
/** The index for the component */
index?: number;
};
export declare const ModalGallery: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: ModalGalleryProps<StreamChatGenerics>) => JSX.Element;
//# sourceMappingURL=ModalGallery.d.ts.map