import type { ReactNode } from 'react'; import { type DimensionValue, type StyleProp, type ViewStyle } from 'react-native'; type YoutubeViewWrapperProps = { children: ReactNode; width?: DimensionValue; height?: DimensionValue; style?: StyleProp; }; declare function YoutubeViewWrapper({ children, width, height, style }: YoutubeViewWrapperProps): import("react/jsx-runtime").JSX.Element; export default YoutubeViewWrapper; //# sourceMappingURL=YoutubeViewWrapper.d.ts.map