import * as React from 'react';
import { ImageBackgroundProperties, StyleProp, ViewStyle } from 'react-native';
export interface IconProps extends ImageBackgroundProperties {
    onPress?: () => void;
    wrapperStyle?: StyleProp<ViewStyle>;
}
declare const Icon: React.StatelessComponent<IconProps>;
export default Icon;
