import React from 'react'; import { ViewProps } from 'react-native'; export declare type SlideDownHandlerProps = ViewProps & { onRequestClose: () => void; visible: boolean; onEnd?: () => void; }; export declare const SlideDownHandler: React.FC;