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<ViewStyle>;
};
declare function YoutubeViewWrapper({ children, width, height, style }: YoutubeViewWrapperProps): import("react").JSX.Element;
export default YoutubeViewWrapper;
//# sourceMappingURL=YoutubeViewWrapper.d.ts.map