/// import { TextStyle } from 'react-native'; export interface IconProps { /** Size of the icon. */ size?: number; /** Icon to display. */ name?: string; /** Color of the icon. */ color?: 'primary' | 'secondary' | 'error' | 'success' | 'warning' | string; style?: TextStyle; } export declare const IconDefaultProps: Partial; /** * 🗿 Icon */ export declare const Icon: import("react").ComponentType;