export default AcePreview;
declare class AcePreview extends React.Component<any, any, any> {
    static propTypes: {
        html: PropTypes.Requireable<string>;
        css: PropTypes.Requireable<string>;
        js: PropTypes.Requireable<string>;
    };
    static defaultProps: {
        html: string;
        css: string;
        js: string;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    iframeRender: (html: any, css: any, js: any) => void;
    container: HTMLDivElement;
}
import React from "react";
import PropTypes from "prop-types";
