import React from 'react'; import { ViewStyle, StyleProp, TextStyle } from 'react-native'; import { RneFunctionComponent } from '../helpers'; export declare type SocialMediaType = 'facebook' | 'facebook-messenger' | 'whatsapp' | 'twitter' | 'google-plus-official' | 'google' | 'pinterest' | 'linkedin' | 'youtube' | 'vimeo' | 'tumblr' | 'instagram' | 'quora' | 'flickr' | 'foursquare' | 'wordpress' | 'stumbleupon' | 'github' | 'github-alt' | 'twitch' | 'medium' | 'soundcloud' | 'stack-overflow' | 'gitlab' | 'angellist' | 'codepen' | 'weibo' | 'vk'; export declare type SocialIconProps = { Component?: typeof React.Component; type?: SocialMediaType; button?: boolean; onPress?(): void; onLongPress?(): void; iconType?: string; iconStyle?: StyleProp; style?: StyleProp; iconColor?: string; underlayColor?: string; title?: string; raised?: boolean; disabled?: boolean; loading?: boolean; activityIndicatorStyle?: StyleProp; small?: string; iconSize?: number; light?: boolean; fontWeight?: string; fontStyle?: StyleProp; fontFamily?: string; }; declare const SocialIcon: RneFunctionComponent; export { SocialIcon }; declare const _default: React.FunctionComponent>, "style" | "light" | "button" | "raised" | "disabled" | "iconStyle" | "onPress" | "onLongPress" | "underlayColor" | "type" | "Component" | "small" | "title" | "loading" | "iconType" | "fontFamily" | "activityIndicatorStyle" | "fontStyle" | "fontWeight" | "iconColor" | "iconSize">> | React.ForwardRefExoticComponent>>; export default _default;