import React from 'react'; import type { ViewProps } from 'react-native'; interface IOutsidePressHandlerProps extends ViewProps { onOutsidePress: () => void; disabled?: boolean; } export default function OutsidePressHandler(props: IOutsidePressHandlerProps): React.JSX.Element; export {}; //# sourceMappingURL=outside-press-handler.d.ts.map