/// <reference types="react" />
import { IconOptions } from "./Icon";
export default function TabBarIcon({ name, color, }: {
    name: IconOptions;
    color: string;
}): JSX.Element;
