import { SimpleIcon } from '../types/simple_icon';
export declare const fetchSimpleIcons: ({ slugs }: {
    slugs: string[];
}) => Promise<{
    simpleIcons: Record<string, SimpleIcon>;
    allIcon: Record<string, {
        title: string;
        hex: string;
        slug: string;
    }>;
}>;
