import React from "react"; import { Animated, StyleProp, ViewProps, ViewStyle } from "react-native"; export interface BackdropProps { revealed?: boolean; header?: React.ReactElement | null; headerHeight?: number; backLayer?: React.ReactElement | null; backLayerHeight?: number; subheader?: React.ReactElement | null; subheaderHeight?: number; style?: StyleProp; headerContainerStyle?: StyleProp; backLayerContainerStyle?: StyleProp; frontLayerContainerStyle?: Animated.AnimatedProps["style"]; subheaderContainerStyle?: StyleProp; } declare const Backdrop: React.FC; export default Backdrop;