declare class DialogScreen extends React.Component { constructor(props: any); navigator: Navigator; state: { visible: boolean; }; TIME_OUT: NodeJS.Timeout | null; modalRef: React.RefObject; componentDidMount(): void; componentWillUnmount(): void; requestClose: (requestClose: any) => void; onClose: any; onDismiss: () => void; onTouchOutside: () => void; onHardwareBackPress: () => void; render(): JSX.Element; } declare namespace DialogScreen { namespace defaultProps { const closeOnTouchOutside: boolean; } } export default DialogScreen; import React from "react"; import Navigator from "../navigator/Navigator"; //# sourceMappingURL=DialogScreen.d.ts.map