import React from '../react'; import { BasicOptions } from '../type'; type _IframeType = JSX.IntrinsicAttributes & React.ClassAttributes & Omit, 'src' | 'id'>; type IframeType = _IframeType & BasicOptions; export interface IframeOptions extends IframeType { token: string; } export declare function IframeLoader(options: IframeOptions): JSX.Element; export {};