import { IconSource } from '../index'; import { IconName } from './types'; import * as React from 'react'; export type IconsMap = { [key: string]: IconSource; }; interface IProps { data: IconName[]; } export declare const IconsShowcase: React.FC; export {};