1 | import * as React from 'react';
|
2 | import { Animated, ViewProps } from 'react-native';
|
3 | export declare const MaybeScreenContainer: ({ enabled, ...rest }: ViewProps & {
|
4 | enabled: boolean;
|
5 | children: React.ReactNode;
|
6 | }) => JSX.Element;
|
7 | export declare const MaybeScreen: ({ enabled, active, ...rest }: ViewProps & {
|
8 | enabled: boolean;
|
9 | active: 0 | 1 | Animated.AnimatedInterpolation;
|
10 | children: React.ReactNode;
|
11 | freezeOnBlur?: boolean | undefined;
|
12 | }) => JSX.Element;
|
13 |
|
\ | No newline at end of file |