import React from 'react'; import { ViewStyle, StyleProp, TextStyle, TouchableHighlightProps } from 'react-native'; import { IconButtonProps, IconProps as VectorIconProps } from 'react-native-vector-icons/Icon'; import { RneFunctionComponent } from '../helpers'; export declare type IconType = 'material' | 'material-community' | 'simple-line-icon' | 'zocial' | 'font-awesome' | 'octicon' | 'ionicon' | 'foundation' | 'evilicon' | 'entypo' | 'antdesign' | 'font-awesome-5' | string; export interface IconObject extends TouchableHighlightProps { name?: string; color?: string; size?: number; type?: IconType; iconStyle?: StyleProp; } export declare type IconNode = boolean | React.ReactElement<{}> | Partial; export declare type IconProps = IconButtonProps & { type?: IconType; Component?: typeof React.Component; reverse?: boolean; raised?: boolean; containerStyle?: StyleProp; iconProps?: VectorIconProps; reverseColor?: string; disabled?: boolean; disabledStyle?: StyleProp; solid?: boolean; brand?: boolean; }; declare const Icon: RneFunctionComponent; export { Icon }; declare const _default: React.FunctionComponent; iconProps?: VectorIconProps; reverseColor?: string; disabled?: boolean; disabledStyle?: StyleProp; solid?: boolean; brand?: boolean; } & Partial>, keyof import("../config").ThemeProps>> | React.ForwardRefExoticComponent; iconProps?: VectorIconProps; reverseColor?: string; disabled?: boolean; disabledStyle?: StyleProp; solid?: boolean; brand?: boolean; } & Partial>>; export default _default;