import { StyledProp } from '@codeleap/styles' import { ReactNode } from 'react' import { TouchableProps } from '../Touchable' import { ViewProps } from '../View/types' import { BackdropComposition } from './styles' import { ReanimatedEnteringAnimation, ReanimatedExitingAnimation } from '../../types' export type BackdropProps = Omit & { children?: ReactNode visible: boolean wrapperProps?: ViewProps style?: StyledProp exiting?: ReanimatedExitingAnimation entering?: ReanimatedEnteringAnimation }