/// <reference types="react" />
/**
 * @module host
 */
import React from 'react';
import { Application } from './';
export interface FrameProps {
    app: Application;
    title: string;
    url: string;
    [key: string]: any;
}
export declare class Frame extends React.PureComponent<FrameProps, never> {
    iframe?: HTMLIFrameElement;
    detach?: Function;
    componentDidMount(): void;
    componentWillUnmount(): void;
    render(): JSX.Element;
}
