declare const createIframe: (container: HTMLElement | null, name: string, id: string, width?: string, height?: string, onLoadCallback?: GlobalEventHandlers["onload"]) => HTMLIFrameElement; declare const createForm: (formName: string, formAction: string, formTarget: string) => HTMLFormElement; declare const createInput: (name: string, value: string) => HTMLInputElement; declare const createElement: (tagName: string, child: Node) => HTMLElement; declare const createIframeContainer: (id: string, hidden?: boolean) => void; declare const removeIframe: (ids?: string[]) => (void | undefined)[] | undefined; export { createElement, createForm, createIframe, createIframeContainer, createInput, removeIframe, };