import React from 'react'; type OverlayProps = { onPress?: () => void; testID?: string; }; declare const Overlay: ({ onPress, testID }: OverlayProps) => React.JSX.Element; export default Overlay;