import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; declare const defaultProps: { fill: string; width: number; height: number; }; type Props = { style?: StyleProp; } & typeof defaultProps; declare const _default: React.MemoExoticComponent<{ ({ fill, width, height, style }: Props): JSX.Element; defaultProps: { fill: string; width: number; height: number; }; }>; export default _default;