import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { Placement } from './StyledAppCue'; interface AppCueProps { content: string | React.ReactElement; target: React.ReactElement<{ onPress?: () => void; children?: React.ReactNode; }>; /** * The Position of the App Cue. */ placement?: Placement; /** * Additional style. */ style?: StyleProp; /** * Testing ID of the component. */ testID?: string; } declare const AppCue: ({ target, content, placement, style, testID, }: AppCueProps) => React.JSX.Element; export default AppCue;