import React from 'react';
interface PHXIframeProps {
    srcDoc?: string;
    src?: string;
    title?: string;
    isFullWidth?: boolean;
    height?: 'small' | 'medium' | 'large' | 'full';
    hasBorder?: boolean;
    rounded?: boolean;
    isMobile?: boolean;
}
export declare function PHXIframe({ hasBorder, height, isFullWidth, isMobile, rounded, src, srcDoc, title, }: PHXIframeProps): React.JSX.Element;
export {};
