import type { Core } from "@strapi/strapi";
type IconType = {
    name: string;
    svg: string;
};
declare const _default: ({ strapi }: {
    strapi: Core.Strapi;
}) => {
    getIcons(): IconType[];
};
export default _default;
