import React from 'react'; import { IconName } from '../Icons'; export interface IconProps { name: IconName; color: string; size: number; /** Drawn fallback, used only when react-native-svg is not installed. */ fallback: React.ReactNode; } /** * Resolves an icon in priority order: * 1. a consumer override from the `icons` registry (e.g. lucide-react-native), * 2. the built-in Lucide glyph (rendered via react-native-svg), * 3. the dependency-free drawn `fallback` when react-native-svg is absent. */ export declare const Icon: ({ name, color, size, fallback }: IconProps) => React.ReactElement; //# sourceMappingURL=Icon.d.ts.map