import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; declare type Props = { children?: React.ReactNode; style?: StyleProp; }; declare const AbsoluteView: ({ children, style, }: Props) => JSX.Element; export default AbsoluteView;