UNPKG

493 BTypeScriptView Raw
1import * as React from 'react';
2import { Animated, ViewProps } from 'react-native';
3export declare const shouldUseActivityState: any;
4export declare const MaybeScreenContainer: ({ enabled, ...rest }: ViewProps & {
5 enabled: boolean;
6 children: React.ReactNode;
7}) => JSX.Element;
8export declare const MaybeScreen: ({ enabled, active, ...rest }: ViewProps & {
9 enabled: boolean;
10 active: 0 | 1 | 2 | Animated.AnimatedInterpolation;
11 children: React.ReactNode;
12}) => JSX.Element;