/// <reference types="react" />
declare type Props = {
    icon: string;
    thumbnail: {
        dark?: string;
        light?: string;
    };
    title?: string;
    theme: any;
};
export declare const ToolIcon: ({ icon, thumbnail, title }: Props) => JSX.Element;
export {};
