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