import type { ReactElement } from 'react'; import type { ViewProps, StyleProp, ViewStyle } from 'react-native'; export interface MapPinFocussedProps extends ViewProps { /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; } declare const MapPinFocussed: ({ style, testID, ...nativeProps }: MapPinFocussedProps) => ReactElement; export default MapPinFocussed;