import { default as React } from 'react';
import * as StrapiIcons from '@strapi/icons';
interface PluginIconProps {
    icon?: keyof typeof StrapiIcons;
}
declare const PluginIcon: ({ icon }: PluginIconProps) => React.JSX.Element;
export { PluginIcon };
