import React from 'react';
import { ILine } from '../Line/Line';
export declare type IFrame = ILine & {
    url?: string;
    src?: string;
    value?: any;
    startOptions?: any;
    endOptions?: any;
    IconMobile?: any;
    IconTablet?: any;
    IconLaptop?: any;
    IconDesktop?: any;
    iframeProps?: any;
    IFrameProps?: any;
    OptionProps?: any;
    OptionsProps?: any;
    OptionsWrapperProps?: any;
    WrapperProps?: any;
};
declare const Frame: React.FC<IFrame>;
export default Frame;
