/// import { ReactNode, Component } from 'react'; import { ViewStyle, ViewProperties } from 'react-native'; export interface PropsDefine extends ViewProperties { children?: ReactNode; onPress: () => void; style?: ViewStyle; visible?: boolean; } export declare class Props implements PropsDefine { onPress: () => {}; visible: false; } export default class Overlay extends Component { static defaultProps: Props; private NOOP; render(): JSX.Element; }