import React from 'react'; import { ILine } from '../Line/Line'; import { IPropsAny } from '../types'; export interface IIFrame extends ILine { id?: string; WrapperProps?: IPropsAny; } declare const IFrame: React.FC; export default IFrame;