import { default as React } from 'react';
export declare enum IframeTypeEnum {
    ACH = 0,
    CREDIT_CARD = 1
}
interface IframeProps {
    source: string;
    title: string;
    type: IframeTypeEnum;
    proceed?: any;
    onCancel?: () => void;
    onLoad?: () => void;
    onProgress?: () => void;
}
declare const Iframe: React.FC<IframeProps>;
export default Iframe;
