import { ComponentProps } from "react";
import { Feather } from "@expo/vector-icons";
export declare type IconOptions = ComponentProps<typeof Feather>["name"];
export default function Icon({ name, size, color, }: {
    name: IconOptions;
    size?: number;
    color?: string;
}): JSX.Element;
