import * as React from 'react'; import { ColorValue, StyleProp, ViewProps, FlexStyle, TransformsStyle, } from 'react-native'; export type VectorDrawableResizeMode = | 'cover' | 'contain' | 'stretch' | 'center'; export interface VectorDrawableStyle extends FlexStyle, TransformsStyle { resizeMode?: VectorDrawableResizeMode; tintColor?: ColorValue; opacity?: number; } export interface VectorDrawableProps extends ViewProps { /** * The name of the vector drawable resource. */ resourceName: string; /** * Style */ style?: StyleProp; } declare const VectorDrawable: React.FunctionComponent; export default VectorDrawable;