import type { PropsWithChildren } from "react"; import type { ViewProps } from "react-native"; import type { RNIBlurViewProps } from "../../native_components/RNIBlurView"; import type { RNIBlurViewRef } from "../../native_components/RNIBlurView"; export type BlurViewRef = Pick; export type BlurViewInheritedOptionalProps = Partial>; export type BlurViewInheritedRequiredProps = Required>; export type BlurViewInheritedProps = BlurViewInheritedOptionalProps & BlurViewInheritedRequiredProps; export type BlurViewProps = PropsWithChildren< BlurViewInheritedProps & ViewProps >;