import * as React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; type Props = { visible: boolean; children: React.ReactNode; style?: StyleProp; }; export default function ResourceSavingScene({ visible, children, style, ...rest }: Props): JSX.Element; export {}; //# sourceMappingURL=ResourceSavingView.d.ts.map