import { EmbedType, UrlOptions, ActionableOptions, IframeOptions } from '../../base';
type CreateIframe = {
    formId: string;
    domain?: string;
    options: CreateIframeOptions;
};
type CreateIframeOptions = UrlOptions & ActionableOptions & IframeOptions;
export declare const createIframe: (type: EmbedType, { formId, domain, options }: CreateIframe) => {
    iframe: HTMLIFrameElement;
    embedId: string;
    refresh: () => void;
    focus: () => void;
};
export {};
