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