import { TIframe, SIZES } from '../types';
interface IIframeInput {
    width?: SIZES;
    position?: number;
    height: string;
    url: string;
    title?: string;
}
export declare const createIframe: ({ width, height, url, title, position, }: IIframeInput) => TIframe;
export {};
