import React from 'react'; import { type Item, type GalleryProps } from '../Gallery'; export interface ImageItem { id: string; filename?: string; metaData: { name: string; }; } interface ImageGalleryProps { providerType?: string; onClick?: (itemUrl: Item['url']) => void; enableSearch?: boolean; setHasChildModal?: GalleryProps['setHasChildModal']; } export declare const ImageGallery: ({ providerType: initialProviderType, onClick, enableSearch, setHasChildModal, }: ImageGalleryProps) => React.JSX.Element; export {}; //# sourceMappingURL=ImageGallery.d.ts.map