import React from 'react';
import { ILine } from '../Line/Line';
import { IPropsAny } from '../types';
export declare type IIFrame = ILine & {
id?: string;
src?: string;
WrapperProps?: IPropsAny;
};
declare const IFrame: React.FC<IIFrame>;
export default IFrame;