import { MaterialCommunityIcons, MaterialIcons } from "@expo/vector-icons"; import { type StyleProp, type TextStyle } from "react-native"; export type IconType = { type: "material"; name: keyof typeof MaterialIcons.glyphMap; } | { type: "material-community"; name: keyof typeof MaterialCommunityIcons.glyphMap; }; type IconProps = { size?: number; color?: string; style?: Omit, "cursor">; } & IconType; export declare function Icon({ type, name, size, color, style }: IconProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map