import React from 'react';
export interface Props {
    loading?: boolean;
    visible?: boolean;
    title?: string;
    width?: number;
    placement?: 'left' | 'right' | 'top' | 'bottom';
    className?: string;
    style?: React.CSSProperties;
    src: string;
    allowFullScreen?: boolean;
    allowOpenInNewTab?: boolean;
    sanbox?: 'allow-forms' | 'allow-pointer-lock' | 'allow-popups' | 'allow-same-origin' | 'allow-scripts' | 'allow-top-navigation';
    allow?: 'geolocation' | 'microphone' | 'camera' | 'midi' | 'encrypted-media';
    onClose?(): void;
}
declare const _default: any;
export default _default;
