import type { FunctionComponent } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface NavArrowProps { height?: number; width?: number; color?: string; strokeWidth?: number; style?: StyleProp; } export declare const NavArrow: FunctionComponent;