import { FunctionComponent, HTMLAttributes } from 'react';
export interface IframeProps extends HTMLAttributes {
allow?: string;
src?: string;
title?: string;
width?: number;
height?: number;
showPlayerEmbed?: boolean;
}
export declare const Iframe: FunctionComponent;