import type { ReactNode } from 'react'; import type { StyleProp, ViewStyle, LayoutChangeEvent } from 'react-native'; export interface ShadowProps { style?: StyleProp; children?: ReactNode; onLayout?: (e: LayoutChangeEvent) => void; }